Originally posted by: waldstein
In the cutting stock problem, which is impemented by ILOG, there is a section like this:
if (Math.abs(masterCplex.getObjValue() - 47) >= 0.0001)
{
status = -1;
writeln("Unexpected objective value");
}
Is the figure "47" a bound of the optimal objective value?
How can they obtain this figure?
Thanks!
#DecisionOptimization#OPLusingCPLEXOptimizer