Dmitry Podkopaev

  • Gurobi-versary
  • First Question
  • Total activity 2
  • Last activity
  • Member since
  • Following 0 users
  • Followed by 0 users
  • Votes 0
  • Subscriptions 1

Activity overview

Latest activity by Dmitry Podkopaev
  • Dmitry Podkopaev created a post,

    Parametrizing sense of constraints when using MVar and MLinExpr

    Answered

    Consider 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....