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

How can I check the total number of constraints created after running the model

回答済み

コメント

1件のコメント

  • Riley Clement
    Gurobi Staff Gurobi Staff

    With python, create the model, update, then use model attributes:

    m = gp.Model()
    ...
    m.update()
    print(m.NumConstrs)
    print(m.NumQConstrs)
    print(m.NumGenConstrs)
    print(m.NumSOS)

    Other APIs can be used in a similar fashion.

    - Riley

     

     

    0

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