Jonas Grundler
- 合計アクティビティ 11
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 0
- サブスクリプション 2
投稿
Jonas Grundlerによる最近のアクティビティ-
Adding new variables to existing model
回答済みDear all, I am working on the following model: m = Model('Test')first_set = list(range(3))second_set = list(range(3))x = m.addVars(first_set, second_set, vtype=GRB.CONTINUOUS) #9y = m.addVars(secon...
-
Accessing objective terms
回答済みDear all, I am using a Python function which returns 'm', a gurobi.Model object. In a next step, I call m.optimize(). Afterwards, I can use m.objval, m.getVars(), etc. to access my results. However...