Originally posted by: Nadere
Hello,
I want to solve the SOCP problem with benders decomposition under uncertainty. For each scenario, I solve the dual of subproblem which is SOCP.
Therfore, I use barrier algorithm to solve the problem as follows:
cplex.setParam(IloCplex::Param::Barrier::QCPConvergeTol, CONVTOL); // CONVTOL = 1e-8 (small error will typically remain)
cplex.solve();
In order to access the maximum primal infeasibility, I use the following comment.
IloNum violation = cplex.getQuality(IloCplex::MaxPrimalInfeas);
My question is: If the value of violation is greater zero (e.g. 100), can we use solutions of the dual of subproblem to generate benders optimality cut? If not, what should I do for generating cut?
Thanks,
Nadere
#CPLEXOptimizers#DecisionOptimization