Hussein Sharadga
- 合計アクティビティ 54
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 15
- サブスクリプション 16
投稿
Hussein Sharadgaによる最近のアクティビティ-
Root relaxation solution
回答済みHi Gurobi Community, I am solving a large MILP. Can the root relaxation result in a slightly different objective (1.2% difference) when formulating the problem in a different way? What I mean by fo...
-
How to terminate gurobi solver?
回答済みHello everyone, I'm currently working on solving a mixed-integer linear problem using Gurobi. The decision variables in this problem include both continuous and binary variables, with the binary va...
-
Presolve is successful in removing all binary variables
回答済みHi Gurobi Community! I have a problem with about 83832 binary variables. What does it mean when gurobi uses the Presolve, and now the Presolve removes all binary variables? Does that mean the probl...
-
lower bounds of variables given by iterating over dictionary instead of matrix
回答済みI have a large problem with binary variables. The binary variables sometime should be one. This is given by the lower bound on this binary variable. The normal condition: lower bound=0, upper bound...
-
Optimality proof when limited computation time
回答済みHi Gurobi Community! Suppose I have a limited time to solve a big MILP problem. Gurobi Consume 510 seconds to prove the optimality and then 200 seconds to find the solution using branch and bound a...
-
Does Gurobi take advantage of the problem structure?
回答済みDoes Guroib take advantage of the problem structure? I am working on a large optimization problem with more than 40,000 binary variables and huge number of constraints. below is only one of the con...
-
How to use computeIIS to find the constraint or the bound that is the source of the infeasibility?
回答済みAfter I use the following command: m.computeIIS()m.write("m.ilp") how to figure out which constraint was the source of the problem? Please see the lip file below: I have a big model and I even do n...
-
What is the difference between quadratic expression and quadratic constraint for gurobi?
回答済みHi Gurobi Community. What is the difference between quadratic expression and quadratic constraint for gurobi? For quadratic constraint, I need to set the nonconvex parameter to 2 for gurobi to solv...
-
GurobiError "Constraint has no bool value" is fixed by flipping the constraint.
回答済みIn the following code: x is constant, and B is the optimization variable. I have the following constraint.\[x<=sum(B)\]This constraint is the source of the problem.If I flip it as follows, the prob...
-
Quadratic equality constraints are non-convex: x^2 destroys the convexity
進行中Hi! I tried to solve a problem with the following objective function: \[\min\ x^2-0.6x+M|x^2-x|\] \[0<=x<=1\] M=10import gurobipy as gpm=gp.Model()x=m.addVar(vtype='C',lb=0,ub=1)aux=m.addVar(vtype...