Zhongjin Lu
- 合計アクティビティ 8
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 0
- サブスクリプション 2
アクティビティの概要
Zhongjin Luさんの最近のアクティビティ-
Zhongjin Luさんがコメントを作成しました:
Just one more piece of information: even the BestBd is below the obj value under the starting x values I give to Gurobi. This is puzzling to me.
-
Zhongjin Luさんがコメントを作成しました:
Dear Riley, Following your suggestions, I tried to use some heuristic starting values. My question is that given that "Starting Obj Value using x[i].start" is 26.9437, why I got "User MIP start did...
-
Zhongjin Luさんがコメントを作成しました:
Riley, Thanks for the suggestion. If I want to get the closest approximation to the best possible solution within a certain amount of time, is there any other parameters I can set? Thanks, Zhongjin
-
Zhongjin Luさんが投稿を作成しました:
Gurobi cannot find the solution after one day
回答済みCan anything be done to solve the following problem? The dimension of x should be 3000. I have reduced it to 500 and Gurobi still cannot find the solution.import gurobipy as gpfrom gurobipy import...
-
Zhongjin Luさんがコメントを作成しました:
Ahmed, Thanks a lot. I didn't realize that the default lower bound value is 0. Once I relax it, Gurobi finds the correct answer. Thanks! Zhongjin
-
Zhongjin Luさんが投稿を作成しました:
Why Gurobi cannot find the solution to a simple Quadratic Optimization Problem?
回答済みimport gurobipy as gpfrom gurobipy import GRBimport numpy as npimport scipy.sparse as sp# Create a new modelm = gp.Model("matrix1")# Create variablesx = m.addMVar(shape=7, vtype=GRB.CONTINUOUS, na...