Anup Agarwal
Doctoral Research Assistant at Carnegie Mellon University
- 合計アクティビティ 9
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 2
- サブスクリプション 1
コメント
Anup Agarwalによる最近のアクティビティ-
I am facing the same issue, I provide a partial start solution (there is a unique completion to this partial solution) and Gurobi says: "User MIP start did not produce a new incumbent solution.". F...
-
Also, I wanted to clarify, I wasn't quite correct when saying there is unique completion for the partial solution. There are more feasible solutions. Like in the above example, xs can take smaller ...
-
Also, I wanted to confirm one thing. For the below code, Gurobi saying "User MIP start did not produce a new incumbent solution" just means that it already knows the start solution right? i.e. sinc...
-
import gurobipy as gpimport randomNUM = 10000UB = 8m = gp.Model('test')xs = m.addVars(range(NUM), vtype=gp.GRB.INTEGER, lb=1, ub=UB, name='x')ys = m.addVars(range(NUM), vtype=gp.GRB.CONTINUOUS, lb=...
-
Also, I am using version: Gurobi Optimizer version 9.0.0 build v9.0.0rc2 (linux64) I am assuming the issue referred to here: https://groups.google.com/forum/#!topic/gurobi/C1bIDPFvtKY has been fixe...
-
That was the first thing I checked, the bound, constraint, and integrality violation, all are < 1e-14. The problem we are trying to diagnose is Gurobi taking a lot of time to find a feasible soluti...