
Thomas Opfer
- 合計アクティビティ 72
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 0
- サブスクリプション 29
アクティビティの概要
Thomas Opferさんの最近のアクティビティ-
Thomas Opferさんがコメントを作成しました:
A typical mistake in Benders Decomposition is that some variables have non-trivial bounds (different from 0 or infinity) and not taking the reduced cost vector into account when calculating the dua...
-
Thomas Opferさんがコメントを作成しました:
Hi Andy, first of all, if you look into literature, you might find different standard forms for LPs. So you should tell us which standard form you are talking about. Anyway, for every form, you mig...
-
Thomas Opferさんがコメントを作成しました:
Hi Andy, an equality constraint has kind of a slack variable with an upper and lower bound of 0. When the equality constraint is basic, then this variable is part of the basis. Best regards,Thomas
-
Thomas Opferさんがコメントを作成しました:
There might be an easier way, but this should work: I1 = [s[0] for s in I1]
-
Thomas Opferさんがコメントを作成しました:
Some information about the gap and other MIP basics can be found here. The question which gap is good enough to stop the code cannot be answered in general. A gap of 0 is obviously always good enou...
-
Thomas Opferさんがコメントを作成しました:
The default upper bound should be +INF, so you should not have to specify it explicitly. But of course, it is perfectly ok to do so. Best regards,Thomas
-
Thomas Opferさんがコメントを作成しました:
Without having verified this, I guess you are using the default lower bound of 0. You should add the variables with lower bound -INF. Best regards,Thomas
-
Thomas Opferさんがコメントを作成しました:
You might also try to continue using your current machine and restrict Gurobi to 6 cores. The remaining 2 cores might be sufficient for your other work. The difference between 6 and 8 cores for Gur...
-
Thomas Opferさんがコメントを作成しました:
Something like -inf <= GOAL <= inf should be the correct way to do this.
-
Thomas Opferさんがコメントを作成しました:
I guess the problem is that lower bounds of variables are 0 if not specified otherwise.