メインコンテンツへスキップ

conditional statement

回答済み

コメント

1件のコメント

  • Simranjit Kaur
    • 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

サインインしてコメントを残してください。