
Brannon King
- 合計アクティビティ 20
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 4
- サブスクリプション 8
アクティビティの概要
Brannon Kingさんの最近のアクティビティ-
Brannon Kingさんが投稿を作成しました:
FeasRelax with smart choice of cons to drop
I'm attempting to use the FeasRelax function on a minimization problem. My problem has some constraints that conflict with each other. FeasRelax successfully drops some of the conflictors. However,...
-
Brannon Kingさんが投稿を作成しました:
Please support Pypy v7.3+
回答済みI cannot install gurobipy using pip on Pypy (v7.3.15). pip informs me that there are no available gurobipy distributions for Pypy. Please add a distribution for the Pypy interpreter (https://www.py...
-
Brannon Kingさんがコメントを作成しました:
This question is old, but so as it has an answer: you can't use numpy functions on scipy sparse objects. The transpose should be sH.T and the dot product should be done via the @ operator: sH @ D .
-
Brannon Kingさんが投稿を作成しました:
norm function should take expressions
回答済みI want to be able to code like this: m.setObjective(gp.norm(x-y, 2), minimize); where x is a variable (or list of variables or MVar) and y is a numpy array.
-
Brannon Kingさんがコメントを作成しました:
Each row has an associated slack variable. Does the slack variable use the same upper/lower status information? How would I determine this VBasis information for a slack variable, since CBasis does...
-
Brannon Kingさんが投稿を作成しました:
What is Gurobi's equivalent to SCIP's getBasisStatus method?
進行中SCIP has SCIProwGetBasisStatus and SCIPcolGetBasisStatus methods. What is Gurobi's equivalent to these methods? This question relates to my larger goal of computing the corner rays at an optimal LP...
-
Brannon Kingさんがコメントを作成しました:
Surely Gurobi's nodes know both their parent and their variable that they branched on, no?
-
Brannon Kingさんがコメントを作成しました:
Yes, I too really need a way to determine what variables Gurobi has already fixed as part of its branching. This information should be available in the node or solution callback. Even if it was jus...