Vincent
- 合計アクティビティ 28
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 8
- サブスクリプション 7
アクティビティの概要
Vincentさんの最近のアクティビティ-
Vincentさんがコメントを作成しました:
Thank you, Hamideh!
-
Vincentさんが投稿を作成しました:
Removing redundant zero-valued variables makes the model slower to solve
回答済みSometimes, when redundant variables are removed — those that take a value of 0 at optimality — the overall solve time increases. The reduced model has fewer variables, but the solver takes longer t...
-
Vincentさんがコメントを作成しました:
Thank you Mario Ruthmair
-
Vincentさんが投稿を作成しました:
Runtime for multiple scenarios
回答済みSometimes, I encounter a situation where my model's runtime decreases when the number of scenarios slightly increases. I'd appreciate any insight into the potential reasons, as this seems counterin...
-
Vincentさんがコメントを作成しました:
Thanks very much for your quick and detailed response.
-
Vincentさんが投稿を作成しました:
Merging a binary decision variable with a continuous variable (semi-binary/continuous)
回答済みI have two decision variables defined as x = m.addVars(((i, j) for i, j in arcs if f[i][j] == 0),vtype=GRB.BINARY, name='x')y = m.addVars(((i, j) for i, j in arcs if f[i][j] == 1),vtype=GRB.CONTINU...
-
Vincentさんがコメントを作成しました:
Hi Matthias, Thanks for your help. Is the itertools.product method faster than the first one? Thanks,Vincent
-
Vincentさんが投稿を作成しました:
How to use addVars() in GurobiPy using "if" conditional?
回答済みI have defined a variable using addVar() method as follows: for i in range(no_nodes): for j in range(no_nodes): for k in O: if fij[i][j]==1 or mij[i][j]==1: x[i,j,k] = m.addVar(vtyp...
-
Vincentさんがコメントを作成しました:
That was actually the issue! Thank you Danial Ramin.
-
Vincentさんがコメントを作成しました:
Hi,I am setting the LogFile parameter manually but the file is almost empty! The only part copied to my logfile is this: Gurobi 9.0.1 (win64) logging started 04/22/20 14:49:32Changed value of param...