Originally posted by: LeandroCC
I would like to be able to add a MIP start from a callback, ideally something like an IncumbentCallback.
The desirable sequence of events is:
1. CPLEX finds a new integer feasible solution
2. I get the variables values
3. I solve a reduced problem starting from these values
4. I add a mip start to the main model (which can even be infeasible, so I cannot just replace cplex's solution)
5. CPLEX tries using my mip start
So far I have things working like this:
1. set the solution limit to one
while (!optimal)
{
run steps 2, 3, 4, 5
}
I would like to embed this in a callback fashion. Is it possible?
#CPLEXOptimizers#DecisionOptimization