
Kechen Ouyang
- 合計アクティビティ 7
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 0
- サブスクリプション 3
アクティビティの概要
Kechen Ouyangさんの最近のアクティビティ-
Kechen Ouyangさんが投稿を作成しました:
c++ copy mode, infeasible
ユーザーの入力を待っています。I want to copy model in c++ use the following code: try { modelo = new GRBModel(*in_modelo); modelo->update(); modelo->optimize(); int status = modelo->...
-
Kechen Ouyangさんがコメントを作成しました:
It helped! Thank you!
-
Kechen Ouyangさんが投稿を作成しました:
column generation with c++
ユーザーの入力を待っています。I'm trying to use column generating with gurobi and c++. I encounter some problem when adding a new variable. I first create a new column: and then add a new variable: There is something wrong wi...
-
Kechen Ouyangさんが投稿を作成しました:
How to copy a model in c++
回答済みGreetings, I want to make a copy of a GRBModel, but I don't know how in c++. model.copy() works in python but not in c++. I first have the followng class: class MasterProblem { public: GRBEnv* env ...