我正在使用scipy.optimize.linprog库通过单纯形法计算最小化。我遇到两种错误:
“ ValueError:单纯形方法的阶段1无法找到可行的解决方案。伪目标函数的计算结果为3.1e-12,超过了将解决方案视为1e-12所需的容差足够的零值作为基本解决方案。请考虑将容差增加到大于3.1e-12。如果此容差过大,则问题可能不可行。 “。
也许有人会找到问题所在。
Minimaze: 45x1 + 54x2 + 42x3 + 36x4
Subject to: x1 + x2 + x3 + x4 = 1600
30x1 + 60x2 + 70x3 + 80x4 = 100000
30x1 + 40x2 + 0x3 + 20x4 = 30000
我写的代码:
A = np.array([[-30, -60, -70, -80], [-30, -40, 0, -20], [-1, -1, -1, -1]])
b = np.array([-100000, -30000, -1600])
c = np.array([45, 54, 42, 36])
res = linprog(c, A_eq=A, b_eq=b, bounds=(0, None))
这是第二个例子:
Minimize: 100x1 + 50x2 + 100x3
Subject to: x1 + x2 + x3 = 3000
28x1 + 14x2 + 10x3 <= 42000
10x1 + 12x2 + 6x3 <= 24000
30x1 + 20x2 + 30x3 >= 75000
10x1 + 10x2 + 15x3 >= 36000
代码如下:
A_ub = np.array([[28, 14, 10], [10, 12, 6], [-30, -20, -30], [-10, -10, -15]])
b_ub = np.array([42000, 24000, -75000, -36000])
A_eq = np.array([[1, 1, 1]])
b_eq = np.array([3000])
c = np.array([100, 50, 200])
res = linprog(c, A_ub, b_ub, A_eq, b_eq, bounds=(0, None))
print('Optimal value:', res.fun, '\nX:', res.x)
答案 0 :(得分:2)
我检查了系统,解决方案确实可行。阅读this post后,看来linprog
中存在浮点问题,显然是方法的问题。似乎通过method='interior-point'
可以改善算法。
在两种情况下都对我有用
情况1:
res = linprog(c, A_eq=A, b_eq=b, method='interior-point')
print('Optimal value:', res.fun, '\nX:', res.x)
>> Optimal value: 64090.8624935836
X: [4.90908724e+02 1.50821194e-05 3.45454303e+02 7.63635788e+02]
情况2:
res = linprog(c, A_ub, b_ub, A_eq, b_eq, bounds=(0, None), method='interior-point')
print('Optimal value:', res.fun, '\nX:', res.x)
#output:
>> Optimal value: 449999.99988966336
X: [ 377.22836393 748.5144238 1874.25721154]
答案 1 :(得分:0)
使用 simplex 方法的 linprog 中确实存在一些问题。我发现有超过15个可溶于 Matlab 的案例,但 linprog 无法通过"method=simplex"
解决。也可以通过传递"method=interior-point"
来解决。但是通常单纯形方法更受欢迎。希望解决它。