paola pizzichetti
- 合計アクティビティ 5
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 1
- サブスクリプション 1
アクティビティの概要
paola pizzichettiさんの最近のアクティビティ-
paola pizzichettiさんがコメントを作成しました:
For example this is the code for a fixed value of eps (in particular for eps equal to the value in the second position of the array eps[e] and it works fine: from gurobipy import GRBfrom gurobipy ...
-
paola pizzichettiさんがコメントを作成しました:
Hi Matthias, Thank you for your fast reply. Unfortunately I added that line inside the loop but still have the same result of before (n time the same solution, instead of n different solutions as ...
-
paola pizzichettiさんが投稿を作成しました:
solve an optimization problem n times with a contraint that varies for a constant (eps)
回答済みfrom gurobipy import GRBfrom gurobipy import Modelimport math m = Model('pyOA_e2')UB = 2LB = -3x = m.addVar(name = 'x', lb = -2, ub= 2)y = m.addVar(name = 'y', lb=-2, ub = 2)u = m.addVar(name = 'u'...