Decision Optimization

Decision Optimization

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


#Analytics
#DecisionOptimization
#DecisionOptimization
 View Only
  • 1.  Formulating objective with min(max+max)

    Posted 04/11/16 12:05 PM

    Originally posted by: optimizing_martina


    Hello, i want to formulate the attached objective in Java so that CPLEX can solve it.

    Has anyone an idea how to formulate this in Java?

    I use "import ilog.concert.*;" and "import ilog.cplex.*;" in Java.

    Thanks a lot for your support!!

    Martina


    #CPLEXOptimizers
    #DecisionOptimization


  • 2.  Re: Formulating objective with min(max+max)

    Posted 04/11/16 02:03 PM

    This can be done using auxiliary variables auxmin, auxmax1, auxmax2 like this:

    minimize auxmin

    auxmin >= auxmax1 + auxmax2

    auxmax1 >= s[j]/a        for all j

    auxmax2 >= sum ... /b    for all j,k

     


    #CPLEXOptimizers
    #DecisionOptimization


  • 3.  Re: Formulating objective with min(max+max)

    Posted 04/13/16 07:26 AM

    Originally posted by: optimizing_martina


    thanks a lot. this works.


    #CPLEXOptimizers
    #DecisionOptimization