GurobiUser
- 合計アクティビティ 8
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 0
- サブスクリプション 3
アクティビティの概要
GurobiUserさんの最近のアクティビティ-
GurobiUserさんが投稿を作成しました:
Setting IntegralityFocus=1 accelerates solution?
回答済みI am solving a series of linear integer programming problems with gurobipy. The solutions I originally got weren't exactly integral, so I set the IntegralityFocus parameter to be 1. Now I get integ...
-
GurobiUserさんが投稿を作成しました:
tupledict copy
I am trying to create a shallow copy of a tupledict d. d.copy() returns it as a regular dictionary, whereas I would like the copy to be a tupledict as well. The best way I found to do this is to wr...
-
GurobiUserさんがコメントを作成しました:
Thank you Jaromil, this resolves my issue.
-
GurobiUserさんがコメントを作成しました:
Hi Jonasz and Jaromil, Thank you both for your input. Jonasz suggestion of using quicksum in this fashion worked and solved my immediate problem. However, I still want to gain a deeper understandin...
-
GurobiUserさんが投稿を作成しました:
Input type to tupledict.sum() in gurobipy
回答済みFor a tupledict x, I am trying to sum all entries which include y as one of their indices: x.sum(y,'*','*',...,'*')+x.sum('*',y,'*',....,'*')+x.sum('*','*',y,...,'*')+...+x.sum('*','*','*',...,y) T...