Carlos Martin
- 合計アクティビティ 14
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 0
- サブスクリプション 4
投稿
Carlos Martinによる最近のアクティビティ-
Messages being printed to standard output when library is loaded
回答済みCurrently, Using license file /Users/[username]/gurobi.licAcademic license - for non-commercial use only is printed to standard output every time I run a Python script that uses Gurobi (e.g. when e...
-
Vectorizing addition of constraints
I'm using the Python API. Is there a vectorized way to add the following constraints? model.addConstrs(( v <= u[:, :, i] @ x for i in range(u.shape[2]))) where v and x are MVars, e.g. v.shape...
-
Solving LPs sequentially versus one large LP with non-interacting variables/constraints
回答済みSuppose I'm solving ~1000 linear programs with ~10 variables and ~100 constraints each. Is it faster to solve these sequentially (creating a new model each time) or to create a single large linear ...