Originally posted by: SystemAdmin
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.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#MathematicalProgramming-General