Carlos Martin
- Total activity 14
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 4
Posts
Recent activity by Carlos Martin-
Messages being printed to standard output when library is loaded
AnsweredCurrently, Using license file /Users/[username]/gurobi.licAcademic license - for non-commercial use only is printed to standard output every time I run a Python script that uses Gurobi (e.g. when e...
-
Vectorizing addition of constraints
I'm using the Python API. Is there a vectorized way to add the following constraints? model.addConstrs(( v <= u[:, :, i] @ x for i in range(u.shape[2]))) where v and x are MVars, e.g. v.shape...
-
Solving LPs sequentially versus one large LP with non-interacting variables/constraints
AnsweredSuppose I'm solving ~1000 linear programs with ~10 variables and ~100 constraints each. Is it faster to solve these sequentially (creating a new model each time) or to create a single large linear ...