
Zeyu Wang
- 合計アクティビティ 9
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 0
- サブスクリプション 4
アクティビティの概要
Zeyu Wangさんの最近のアクティビティ-
Zeyu Wangさんが投稿を作成しました:
Update mipgap after each subproblem
回答済みHi, The problem that I work on requires solving the same model with a different set of constraints until the pre-determined time limit. However, I would like to update/force the optimality gap dyn...
-
Zeyu Wangさんが投稿を作成しました:
Define an index set that is dependent on another two index sets - in Python
回答済みHi, I'm transferring my model from AMPL to python now, but I could not figure out how to build the index sets that rely on other indices. s.t. c1{a in A}: sum{j in J, f in 1..F[a,j]} x[j,f+1] >= 1;...
-
Zeyu Wangさんが投稿を作成しました:
Obtain information on lazy constraint and user cut introduced
回答済みHi, May I know how to obtain the corresponding information after applying lazy constraint/user cut for an optimization problem? such as how much time does it take, or the number of lazy constraint...
-
Zeyu Wangさんがコメントを作成しました:
Thank you so much for your help Jaromił! That helps me a lot! Best, Zeyu
-
Zeyu Wangさんが投稿を作成しました:
Create multi-dimensional variables, read data file in C++
回答済みHi, 1. I would like to create several multi-dimensional decision variables in C++ using const int I = 3;const int J = 4;const int K = 5;GRBVar* v[I];for (int i = 0; i < I; i++){v[i] = model.addVa...