How can I check the total number of constraints created after running the model
回答済みHow can I check the total number of constraints created after running the model?
0
-
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
サインインしてコメントを残してください。
コメント
1件のコメント