Dmitry Podkopaev

  • Gurobi-versary
  • First Question
  • 合計アクティビティ 2
  • 前回のアクティビティ
  • メンバー登録日
  • フォロー 0ユーザー
  • フォロワー 0ユーザー
  • 投票 0
  • サブスクリプション 1

アクティビティの概要

Dmitry Podkopaevさんの最近のアクティビティ
  • Dmitry Podkopaevさんが投稿を作成しました:

    Parametrizing sense of constraints when using MVar and MLinExpr

    回答済み

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