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

Get model status about infeasibility

回答済み

コメント

1件のコメント

  • Silke Horn
    • Gurobi Staff

    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

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