remove temp

This commit is contained in:
Ilya Grigorev
2024-11-09 23:03:40 +03:00
parent 9578a1a71d
commit 2d1f7d14b8
-24
View File
@@ -1,24 +0,0 @@
from main import Vogel
import numpy as np
C = np.array([
[4, 8, 6, 5],
[3, 2, 7, 4],
[6, 5, 3, 9],
], dtype=np.int64)
S = np.array([
150, 200, 100
], dtype=np.int64)
D = np.array([
80, 120, 100, 150
], dtype=np.int64)
NWExpected = np.array([
[80, 70, 0, 0],
[0, 50, 100, 50],
[0, 0, 0, 100]
], dtype=np.int64)
print(Vogel(S, C, D).solution)