Dmitry Podkopaev
- Total activity 2
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 1
Posts
Recent activity by Dmitry Podkopaev-
Parametrizing sense of constraints when using MVar and MLinExpr
AnsweredConsider the following code (Gurobi 9.0.2, Python 3.7, Windows 10): import gurobipy as gbpimport numpy as npm = gbp.Model()x = m.addMVar(3)m.update()a = np.array([1,2,3])m.addConstr(a @ x, gbp.GRB....