liu heng
- 合計アクティビティ 33
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 2
- サブスクリプション 13
投稿
liu hengによる最近のアクティビティ-
Does modification on presolved model affect original model?
回答済みSuppose m is the original model and p = m.presolve() If I do some modifications on p (e.g. optimize or modify variable bounds), will the original model be modified?
-
How to stop presolve from removing variables
回答済みAssume the original model m has 100 variables, and I fix 30 of the 100 variables by setting v.UB=1 , v.LB=1. I want to get the corresponding model with 70 variables. However, if I call p=m.presolve...
-
How to compute the objective and feasibility of a manually given solution?
回答済みSuppose "sol" is a list that consists of the value of each variable.(sol is given by user) How to compute the objective and feasiblity of sol
-
How to check the feasibility of a certain solution
回答済みSuppose I manually give a solution by setting v.Start = xxx. Then I call m.optimize() and the log only shows that "Loaded user MIP start with objective xxx". Does it means the solution is feasible?
-
How do Precrush and AggFill/Aggregate affect variables
回答済みHow do Precrush and AggFill/Aggregate affect variables?(introduce new vars or remove vars)
-
how to stay at the presolved state?
回答済みIn m.optimize(), a presolved model p is generated and solved, then the solution of p is automatically mapped back to m. Can I stay at the state where p is generated but not solved? I want to try s...
-
In python api, is model.copy() deep copy or not
回答済みSuppose model_1 is read from file. model_2 = model_1.copy() if i modify model_2(fix variables or add constraints), will model_1 still keep the original form?
-
All rows and columns removed but still get new incumbent
回答済みI have a current solution 'sol_0' and set v.Start as the current value, then i fix some of the variables and solve the model. In the presolve stage, all rows and columns are removed but i still get...
-
How to fix variables of the presolved model and get the solution of original model ?
回答済みI want to try many kinds of fixations of the original model m and solve it. However, the optimization of m take much time on presolving. So i want to presolve m first(only once) and then do the fix...
-
How to fix variables of the presolved model
ユーザーの入力を待っています。How to fix some variables of model m after m is presolved, and obtain a solution of the corresponding sub-MIP. I tried to fix some variables of model p = m.presolve() and solve it, however, p ma...