paola pizzichetti
- Total activity 5
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 1
Posts
Recent activity by paola pizzichetti-
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'...