Decision Optimization

Decision Optimization

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


#Analytics
#DecisionOptimization
#DecisionOptimization
 View Only
  • 1.  indicator constraint

    Posted 06/22/20 05:05 AM
    Hello there,
    please could anyone show me how to express an indicator constraint in Cplex OPL language 
    let's say for example i want to express this constraint :  if X(i,j)=1 then P[i,j]>=50
    thank you for your response

    ------------------------------
    mouaad ibnelaryf
    ------------------------------

    #DecisionOptimization


  • 2.  RE: indicator constraint

    Posted 06/22/20 05:45 AM
    Use the "implies" operator "=>":
    (X[i,j] == 1) => (P[i,i] >= 50);

    ------------------------------
    Daniel Junglas
    ------------------------------