Decision Optimization

Decision Optimization

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


#Analytics
#DecisionOptimization
#DecisionOptimization
 View Only
  • 1.  cplex problem

    Posted 11/28/13 10:39 PM

    Originally posted by: jason1234


    threre are two IloNumVar:

    IloNumVar cash1= cplex.numVar(0, 1, "Cash-RC1");
    IloNumVar cash2= cplex.numVar(0, 1, "Cash-RC2");

     

    could any of you please tell me hwo to represent cash1/cash2 in Java language

     

    thanks,

    jason


    #CPLEXOptimizers
    #DecisionOptimization


  • 2.  Re: cplex problem

    Posted 11/29/13 03:02 AM

    Quotients of decision variables are not supported. In some cases you can work around this by multiplying the constraint by the denominator, for example

    cash1/cash2 <= something

    can be written as

    cash1 <= cash2 * something

     


    #CPLEXOptimizers
    #DecisionOptimization


  • 3.  回复:cplex problem

    Posted 11/29/13 04:06 AM

    Originally posted by: jason1234


    ok,thanks a lot!
    #CPLEXOptimizers
    #DecisionOptimization