我有一个MINLP问题需要解决,当我尝试优化它时couenne崩溃。在仍然崩溃的情况下,我设法将其大幅降低,并找到了可能的罪魁祸首。
减少问题的目标函数是一个交替的政策x[n] - x[n-1] + x[n-2] - ...
。仅存在一个变量x[k], k=n..1
数组,其中的索引表示x的指数。还有一个限制数组用于执行此幂运算。
对于大于2的乘方,
x[k] = x[1]**k
求幂,couenne会发ast。x[k] = x[k-1]*x[1]
,couenne可以正常求解。所以我的问题是:从求解器的角度来看有什么区别?是否会发生这种故障?我应该用其他依赖项重新编译couenne吗?
这是测试代码:
#! /usr/bin/env python3
import pyomo.environ
import pyomo.core as pc
from pyomo.opt import SolverFactory
def run(max_pow, cascade):
model = pc.ConcreteModel()
model.s = pc.RangeSet(1, max_pow)
model.x = pc.Var(model.s, bounds=(-1,1))
model.s_rest = pc.Set(initialize=list(ii for ii in model.s)[1:])
## TWO DIFFERENT WAYS OF COMPUTING POWERS ##
if cascade: # x[k] = x[k-1]*x[1]
model.x_c = pc.Constraint(model.s_rest, rule=lambda m, s: m.x[s] == m.x[1]*m.x[s-1])
else: # x[k] = x[1]**k
model.x_c = pc.Constraint(model.s_rest, rule=lambda m, s: m.x[s] == m.x[1]**s)
# Alternating objective function: x[k] - x[k-1] + x[k-2] - ....
def obj(x, s, pos=True):
result = x[s]
if s > 1:
result = result + obj(x, s-1, not pos)
if not pos:
result = -result
return result
model.objective = pc.Objective(rule=lambda m: obj(m.x, max_pow), sense=pc.maximize)
opt = SolverFactory("couenne")
results = opt.solve(model)
model.display()
# Test 3 different cases
for max_pow, cascade in [(2, False,), (3, False,), (3, True)]:
print("\nDegree: {}, cascade: {}".format(max_pow, cascade))
print("-"*25)
try:
run(max_pow, cascade)
except Exception as e:
print(e)
以下是结果:
Degree: 2, cascade: False
-------------------------
Model unknown
Variables:
x : Size=2, Index=s
Key : Lower : Value : Upper : Fixed : Stale : Domain
1 : -1 : -1.0 : 1 : False : False : Reals
2 : -1 : 1.0 : 1 : False : False : Reals
Objectives:
objective : Size=1, Index=None, Active=True
Key : Active : Value
None : True : 2.0
Constraints:
x_c : Size=1
Key : Lower : Body : Upper
2 : 0.0 : 0.0 : 0.0
Degree: 3, cascade: False
-------------------------
ERROR: Solver (asl) returned non-zero return code (-11)
ERROR: Solver log: Couenne 0.5 -- an Open-Source solver for Mixed Integer
Nonlinear Optimization Mailing list: couenne@list.coin-or.org
Instructions: http://www.coin-or.org/Couenne couenne:
Solver (asl) did not exit normally
Degree: 3, cascade: True
-------------------------
Model unknown
Variables:
x : Size=3, Index=s
Key : Lower : Value : Upper : Fixed : Stale : Domain
1 : -1 : -0.002154434679988468 : 1 : False : False : Reals
2 : -1 : 4.641588790337013e-06 : 1 : False : False : Reals
3 : -1 : -9.999999860147783e-09 : 1 : False : False : Reals
Objectives:
objective : Size=1, Index=None, Active=True
Key : Active : Value
None : True : 0.002149783091198271
Constraints:
x_c : Size=2
Key : Lower : Body : Upper
2 : 0.0 : 0.0 : 0.0
3 : 0.0 : 0.0 : 0.0
答案 0 :(得分:0)
Pyomo倾向于将模型完全按照您制定的方式发送给求解器,除非您应用一些高级转换(如GDP或DAE)。
对于许多求解器,x * x * x
形式的表达式与x ** 3
的处理方式不同。在某些系统中,甚至x ** 2
,pow(x, 2)
和sqr(x)
也会为您提供不同的行为。尽管在数学上是等效的,但对边界行为和域限制的处理可能有所不同。