Get model status about infeasibility
Answeredhi
I want to output whether my model is feasible or not .
the outcome should be False or True. how can I do that.
thanks in advance.
0
-
Hi,
Once the model is solved, you can query the Status attribute to check the status of the model. (You can find all of the status codes here.)
For example, in Python, you could do this:
if model.Status == GRB.OPTIMAL:
return True
elif model.Status == GRB.INFEASIBLE:
return False
else:
# do something with the other cases- Silke
0
Please sign in to leave a comment.
Comments
1 comment