Originally posted by: SystemAdmin
Hi,everyone!
Apart from using this way to analyze linear programming,is there any other way to do some extra analysis in ILOG OPL studio IDE?For example,sensitivity analysis(objective function coefficent or right-hand coefficent).Thank!
execute {
for(p in products)
writeln("x.reducedCost = ", x[p].reducedCost);
}
execute {
for(r in resources)
{ writeln("ct.slack = ", ct[r].slack);
writeln("ct.dual = ", ct[r].dual);}
}
execute {
for(r in resources)
{ writeln("ct.LB = ", ct[r].LB);
writeln("ct.UB = ", ct[r].UB);
}
}
#DecisionOptimization#OPLusingCPLEXOptimizer