paola pizzichetti
- Total activity 5
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 1
Activity overview
Latest activity by paola pizzichetti-
paola pizzichetti commented,
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 commented,
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 created a post,
solve an optimization problem n times with a contraint that varies for a constant (eps)
Answeredfrom 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'...