Zhongjin Lu
- 合計アクティビティ 8
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 0
- サブスクリプション 2
投稿
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...
-
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...