Originally posted by: harshvnit
If you have your sub problem defined like this, you can change the parameter by m2Cplex.epagap, m2Cplex.tilim etc.
var m2Source = new IloOplModelSource("uPMSP_LowerBound3.mod");
var m2Cplex = new IloCplex();
var m2Def = new IloOplModelDefinition(m2Source);
var m2_init = new IloOplModel(m2Def,m2Cplex);
m2_init.addDataSource(data);
m2.generate();
m2Cplex.tilim=30;
m2Cplex.solve();
In this example it will start solving the uPMSP_LowerBound3.mod and stop after 30 seconds
#DecisionOptimization#OPLusingCPLEXOptimizer