Jakob Schelbert
- Total activity 42
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 4
- Subscriptions 16
Comments
Recent activity by Jakob Schelbert-
Hi Velibor, As far as I know, the R-API does not permit adding lazy constraints. This is also true for the Matlab-API - both are more "matrix based" interfaces compared to the other APIs.
-
Hi Christopher, Have you tried saving each model itself and later call model.write() on the relevant models, or is the (memory) overhead too big for this approach? Can you elaborate a bit more why ...
-
Hi Andreas, some things caught my eye: your model is, I would say, a rather big one. 2.5m variables, 3.5m constraints and 14m non-zeros is something. However the numbers are halved after presolvin...
-
Hi Luca, barrier is probably better known as interior point methods (https://en.wikipedia.org/wiki/Interior-point_method). The Wikipedia article contains some useful links to papers, for example fr...
-
Hi Johannes, you could try to use cvxpy (https://www.cvxpy.org/examples/basic/quadratic_program.html) as an intermediate interface to gurobi. From what I've seen it should offer a similar interface...
-
Hi Gabriel, my gurobi solves your model with objective 0. I've tested 8.1.0 and 8.1.1 - both yield the same (correct) result.Which platform do you use? Gurobi Optimizer version 8.1.0 build v8.1.0rc...
-
Hi Johannes, I think the main reason why python does not provide a raw interface is that the high-level API is MUCH better in terms of debugging and extending a model while the overhead is minimal....
-
Hi Ebru, I think you posted the log of the build process. Daniel meant the log file from the actual solving process. Something like this: x7101: 9222 rows, 7101 columns, 54642 nonzerosChanged value...
-
Hi Taylor, could you state your question a bit clearer. I'm a bit confused what your real question is. Maybe this can help formulating a good question: https://stackoverflow.com/help/how-to-ask
-
Hi Yanfei, please be aware that the MPS file format offers a more accurate precision than the lp file format. You should try to save your model as MPS if numerics might be troublesome. That being s...