Decision Optimization

Decision Optimization

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


#Analytics
#DecisionOptimization
#DecisionOptimization
 View Only
  • 1.  Excel - MaxMin Problem

    Posted 11/07/12 04:24 PM

    Originally posted by: BL_G


    Hello,

    I got a (for me) tricky problem: I am having a MaxMin Problem (maximizing e. g. =MIN(B1:B20) with e. g. B1=A1-DecisionVariable).

    How can I model the MaxMin Problem in Excel with CPLEX 12.4? So far CPLEX gives me the error that the model is not linear.

    Can anyone help? Any hints are welcome...

    Thanks,
    Bernard
    #CPLEXOptimizers
    #DecisionOptimization


  • 2.  Re: Excel - MaxMin Problem

    Posted 11/11/12 09:08 AM

    Originally posted by: John Cui


    I suggest you use OPL to model your MaxMin problem.

    John Cui
    #CPLEXOptimizers
    #DecisionOptimization


  • 3.  Re: Excel - MaxMin Problem

    Posted 11/13/12 02:54 AM

    Originally posted by: SystemAdmin


    max(min) problems can be formulated by using auxiliary variables.
    Assume you have max min(b in B) x(b). Then
    • define auxiliary variable y
    • for each b in B add constraints y <= x(b)
    • maximize y

    #CPLEXOptimizers
    #DecisionOptimization