5

我正在使用 CPLEX Java API 解决大型优化问题。目前我只是

IloCplex cplex = new IloCplex();
... add lots of variables and constraints ...
cplex.solve();
cplex.end();

这很好用,但我经常重复这个过程,我只是在改变系数。每次重复时,我都会创建一个新cplex对象并重新创建所有变量。

有没有更有效的方法来做到这一点?IBM 文档中有“将模型添加到模型实例”之类的语言,这听起来很奇怪,但我认为它暗示了能够重用事物。

来自更有经验的用户的任何建议都会很棒。谢谢。

4

1 回答 1

7

如果您只想更改约束系数(或目标函数的系数),您可以修改现有 IloCplex 对象上的系数。您不应该从头开始创建模型。

retval = cplex.solve();
// verify that the solve was successful

// change coeficients on constraints (or in the objective)
cplex.setLinearCoef(constraint, newCoef, variable);
cplex.setLinearCoef(objective, newObjCoef, variable);

// change right bounds on constraints
constraint.setBounds(newLB, newUB);

// change variable bounds
var.setBounds(newLB, newUB);

retval = cplex.solve();
// verify the solve
于 2012-04-13T05:06:56.687 回答