Ariel W
- Total activity 33
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 11
Posts
Recent activity by Ariel W-
how to add new coloumns into the left side of constraints?
Answeredfor 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
AnsweredMay 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()"?
AnsweredUsing 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
Awaiting user inputIn 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
AnsweredI 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?
AnsweredHow 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?
AnsweredWe 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...