Decision Optimization

Decision Optimization

Delivers prescriptive analytics capabilities and decision intelligence to improve decision-making.

 View Only
  • 1.  sensitivity analysis

    Posted Tue February 26, 2013 12:19 AM

    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


  • 2.  Re: sensitivity analysis

    Posted Tue February 26, 2013 02:25 AM

    Originally posted by: SystemAdmin


    You will find the experts for the OPL IDE on the OPL Forum. Please try to repeat your question there.
    #DecisionOptimization
    #MathematicalProgramming-General