我正在编写一个算法c++
,我有一个主问题和一个子问题。所以我两次调用 cplex 求解器。第一次是当我称之为解决主要问题时,这是我的代码:
IloModel model_master(env);
definition of obj and constraints
IloCplex cplex_master(env);
cplex_master.extract(model_master);
cplex_master.setParam(IloCplex::EpGap,0.0001);
cplex_master.solve();
LB=cplex_master.getObjValue();
但它不起作用!当我把它不打印它cout<<"1" << endl;
之后。IloCplex cplex_master(env);