Originally posted by: SystemAdmin
[Sylvain said:]
I need to "go out" of the search before continuing it since the choices for continuing the search cannot be made before or during the search.
Could I do something like that:
IloGoal goal1 = MyGoal1(...);
IloGoal goal2 = MyGoal2(..., ¶meters);
IloSolver solver(model);
solver.startNewSearch(IloOr(goal1, goal2));
solver.next(); // First partial search
// Do something and set parameters for goal2
solver.next(); // Continue search
solver.endSearch();
#CPOptimizer#DecisionOptimization