Originally posted by: medistif@hotmail.fr
Hello,
I have a model in cplex (concert technology, c++), i want to launch several resolutions, so i want to do it with a "for" loop and in change a parameter in each iteration.
cplex.extract(model);
if(cplex.solve()){
env.out() << cplex.getStatus() << endl;
for(int i = 0; i < k ; i++) {
env.out() << " " << cplex.getValue(var[i]) << "";
}
env.out() << endl;
}
so what have i to put inside for start for example five resolution (all of this code ) ?
thank you for your answers.
#CPLEXOptimizers#DecisionOptimization