INDICATOR CONSTRAINT
AnsweredCan anybody explain what indicator constraint is in gurobi?
for example
model.addConstr((a==1)>>(b==1))
what does it exactly mean? I read the article on indicator constraint but it was not lear to me
0
-
The indicator constraint you stated says that if the binary variable \(a\) equals \(1\), then variable \(b\) has to be equal to \(1\). However, if the binary variable \(a\) is \(0\), then \(b\) can attain any value within its bounds.
0
Please sign in to leave a comment.
Comments
1 comment