
yansong bai
- 合計アクティビティ 36
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 3
- サブスクリプション 10
アクティビティの概要
yansong baiさんの最近のアクティビティ-
yansong baiさんがコメントを作成しました:
Thank you very much, Marika and David. I just find the output 'xn' has the same value.And the information will not appear while the default MIPGap can appear. Optimal solution found at node 0 - now...
-
yansong baiさんが投稿を作成しました:
Can the function PoolSolutions and MIPGap use at the same time?
回答済みHi, when I try to terminate the solving process with a certain MIPGap, I find that PoolSolutions parameter didn't work. Can the parameters PoolSolutions and MIPGap use at the same time? the expres...
-
yansong baiさんがコメントを作成しました:
Thank you, Maliheh.
-
yansong baiさんが投稿を作成しました:
improving the quality of feasible solution
回答済みHi, gurobi support center, I am running a MIP problem. Some useful parameters have been set acording to the discuss of community topics. However, the solving process is still slow, although many fe...
-
yansong baiさんがコメントを作成しました:
Ok, thank you Mario.
-
yansong baiさんがコメントを作成しました:
import numpy as npimport mathimport pandas as pdimport gurobipy as gpfrom gurobipy import GRBset1 = range(0,46)set3 = range(0,39)set4 = range(0,10)set5 = range(29,39)set2 = range(0,20)index = np.ar...
-
yansong baiさんがコメントを作成しました:
Thank you very much. It helps me a lot.
-
yansong baiさんがコメントを作成しました:
Gurobi version is 9.1.2 and Python is 3.7. The environment used is PyCharm.
-
yansong baiさんがコメントを作成しました:
Hi, Jaromił Thank you for your prompt reply. import numpy as npimport gurobipy as gpfrom gurobipy import GRBmodel = gp.Model('test')x = model.addVars(1,4,vtype=GRB.BINARY,name='x')y = model.addVar...
-
yansong baiさんが投稿を作成しました:
can write() function export the lazyconstraints?
回答済みHi, I try to use write() function to export a model. During the solving process, some lazy constraints are added to the model, finally, when i use write() to print the final model, i cannot see the...