Originally posted by: ORA17
Hello Experts,
I have a large and very complicated MIP problem. While solving in CPLEX, reduced MIP has 708434 rows, 398962 columns, 2150910 non zero, 54863 binaries, 690 generals. I tried many cplex parameter tuning but It cannot solve to optimality even after running more than 24 hours.
Then I wanted to try Benders strategy in CPLEX 12.9. I ran with below parameters but after running more than 1 hour it goes out of memory (24 GB RAM).
model.SetParam(Cplex.Param.RootAlgorithm, 4);
model.SetParam(Cplex.Param.NodeAlgorithm, 2);
model.SetParam(Cplex.Param.Barrier.Crossover, 2);
model.SetParam(Cplex.Param.Benders.Strategy, 3);
model.SetParam(Cplex.Param.MIP.Tolerances.MIPGap, 0.05);
Kindly guide me what is the proper way of using Benders strategy. Whether my problem it suitable to solve by benders.
#CPLEXOptimizers#DecisionOptimization