Ariel W
- 合計アクティビティ 33
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 1
- サブスクリプション 11
投稿
Ariel Wによる最近のアクティビティ-
how to add new coloumns into the left side of constraints?
回答済みfor example, i design original constraints like: c1: a1*x1+a2*x2=1c2: a3*x1+a4*x2=1c3: x1+x2 ≤ 5 while new constraints will be c1: a1*x1+a2*x2 + a5*x3 + a6*x4=1c2: a3*x1+a4*x2+ a7*x3 + a8*x4=1c3: x...
-
May I ask whether part of the results of the heuristic algorithm search designed by myself can be input into Gurobi
回答済みMay I ask whether part of the results of the heuristic algorithm search designed by myself can be input into Gurobi, so that Gurobi can continue to iterate on this basis? The heuristic algorithm he...
-
How to use the function "model.relax()"?
回答済みUsing relax function of Gurobi can we derive the bound of original model? can it help me simplify the MIP model solving? how can i do this, please give me an example. Thank you!
-
How to set the priority of certain types of decision variables in Gurobi
ユーザーの入力を待っています。In my model, s[v,i,j] and w[d,i,j] represent whether vehicle v operates trip j after trip i, and driver d operate trip j after trip i, respectively, they are all binary variables. I want to give p...
-
How are the values of the decision variables determined in inequality constraints
回答済みI set two inquality constraints about a decision variable, it can output a determined value, What is the principle of its determination?
-
How to define if constraint with decision varibales?
回答済みHow do i express that "If w[d,0,j]==1 then p[d,j]==0, where w[d,i,j] is a decision variable"?
-
How to define the constraints with accumulation of one index?
回答済みWe conduct a constraint below: where the variables in red are decision variables, others are known constants. how do i define this constraint? I tried to write it, but I couldn't achieve accumulat...