Roee Idan
- 合計アクティビティ 5
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 0
- サブスクリプション 2
アクティビティの概要
Roee Idanさんの最近のアクティビティ-
Roee Idanさんがコメントを作成しました:
Hi Ryuta, Thank you very much for the reply, Do you mean something like this: b = m.addMVar(shape=len(numpy_h), vtype=gp.GRB.BINARY, name="b") epsilon = 1e-6 for i in range(len(numpy_h)): ...
-
Roee Idanさんがコメントを作成しました:
Hi Riley, Is there a way to use matrix-style operations with boolean variables to define indicator constraints? Specifically, I'm looking to avoid indexing individual elements of MVars while defini...
-
Roee Idanさんが投稿を作成しました:
Constraining on parts of vector
回答済みI am working on a Gurobi model where I have defined a vector y as a constraint using other variables. Here is the relevant part of my code: python Copy code index_sets = [{0, 1, 2}, {3, 4}, {2, 6...