Skip to main content

conditional statement

Answered

Comments

1 comment

  • Simranjit Kaur
    Gurobi Staff Gurobi Staff

    Hi Ramesh,

    To ensure that D is zero when the binary variable C is zero, you can add another indicator constraint:

     m.addConstr( (C==0) >> (D==0) )

    Alternatively, you can add a Big-M constraint, m.addConstr( D <= M*C ), where M is a sufficiently large number.

    Cheers,

    Simran

    0

Please sign in to leave a comment.