Carlos Martin
- Total activity 14
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 4
Comments
Recent activity by Carlos Martin-
Silke Horn Under the C API, I get a segfault whenever I call GRBnewmodel inside an OMP parallel for loop, e.g. #pragma omp parallel for // works when this line alone is commentedfor (long batch = 0...
-
Eli Towle Thanks, that seems to work. Is there a way to change the default for OutputFlag globally (e.g. through some system-wide environment variable or setting)?
-
I see there's a Feature Requests subforum, should I post this there? I suppose the ideal interface might look something like def max_min(batch): model = gurobipy.Model() v = model.addMVar(bat...
-
Robert Luce Here is an example: Solving batches of two-player zero-sum normal-form games. I get times like gurobi 0.37076228499999986cvxopt 0.009740684000000055gurobi 0.39596498599999985cvxopt 0.00...
-
More generally, are there plans to add a completely vectorized interface like that of cvxopt.solvers.lp (ideally with the addition of a batch dimension)? This would be extremely useful. Currently c...
-
@... That yields the following error: Traceback (most recent call last):...model.addMConstrs(u[:, :, i], x, '>', v)File "model.pxi", line 3414, in gurobipy.Model.addMConstrsTypeError: object of typ...
-
Model creation overhead is exactly what I'm concerned about, since I'm trying to solve a very large batch of small-to-medium-sized LPs. For example, I'm wondering about the overhead of calling GRBn...