Brannon King
- Total activity 24
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 4
- Subscriptions 9
Posts
Recent activity by Brannon King-
passing Env around (in Python) is annoying
AnsweredIn my research I often clone models and change some aspect of them. I pass models into many different functions, and into all of these functions, I must also pass the environment object. Why? 1. Th...
-
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,...
-
Please support Pypy v7.3+
AnsweredI 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...
-
norm function should take expressions
AnsweredI 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.
-
What is Gurobi's equivalent to SCIP's getBasisStatus method?
OngoingSCIP 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...