В моем последнем посте я получил эту функцию min (max ()):
def maxi(a,b):
return If(a>=b,a,b)
a = 0
for y in zip(*time): #time is a list with many rows and columns
z = sum(y) #z receives the sum of the columns
a = maxi(a,z)
o.minimize(a)
Информация: каждая переменная в моей матрице может иметь значение 7,08 или 0
Моя проблемаследующее:
-> If I put a=0, I will never get a solution
-> If I put a=50, I will get a solution but I will never get the best solution.
Что я делаю не так?Thx!