Originally posted by: SystemAdmin
[stefan_s said:]
261 IloModel model(env);
262 populate_problem(data1, model, true, true, true);
263 solve_problem(model);
264 IloModel model1(env);
265 populate_problem(data1, model1, false, true, true);
266 solve_problem(model1);
Every time I need to solve a problem, I'm creating a completely new model... maybe there is a way to destroy data in the previous model, and just repopulate it?
Thank you
PS. using concert, c++
#CPLEXOptimizers#DecisionOptimization