约束中系数矩阵的函数

时间:2019-07-14 19:08:25

标签: visual-c++ cplex

我需要约束中的系数矩阵。 CPLEX Concert C ++中有一个用于目标系数的函数getObjCoef,但我不知道是否有任何函数可以检索系数矩阵?

1 个答案:

答案 0 :(得分:0)

尝试使用IloExpr :: LinearIterator迭代系数

IloExpr exprCt = rangeCt.getExpr(); 

for (IloExpr::LinearIterator t = exprCt.getLinearIterator(); t.ok(); ++t) 
{ std::cout << t.getCoef() << " * " << t.getVar() << std::endl; }