Originally posted by: srinit34
Hi
I have a branching strategy implemented in my branch callback.
How to stay close to simple branch-and-bound ? I do not want CPLEX to add or remove anything from the model, like cuts or constraints, or variables.
I have used these:
cplex.setParam( IloCplex.Param.MIP.Strategy.HeuristicFreq , -ONE);
cplex.setParam(IloCplex.Param.MIP.Limits.CutPasses, -ONE);
cplex.setParam(IloCplex.Param.Preprocessing.Presolve, false);
#CPLEXOptimizers#DecisionOptimization