将约束添加到数组列表中的问题

时间:2018-08-01 06:54:19

标签: java cplex

我正在学习使用Java API编码优化问题,并且在将以下简单LP的最后约束保存到名为 constructor() { super(); this.handleChange = this.handleChange.bind(this); this.handleSubmit = this.handleSubmit.bind(this); this.state = {value:somevalue} } 的数组列表中时遇到问题。否则,代码将运行,但是,当我使此代码行处于活动状态时,会弹出错误:Constraints
而不是以下行:
Constraints.add(model.addEq(proportionalWeight[j], y));

MWE:

model.addEq(proportionalWeight[j], y);

如果有人可以帮助我解决这个问题,我将不胜感激。
问候,
巴曼(Bahman)

1 个答案:

答案 0 :(得分:1)

我应该使用model.diff(proportionalWeight [j],y),0.0);

代替.addEq()