Robert Luce
-
Gurobi Staff
- Total activity 57
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 25
Comments
Recent activity by Robert Luce-
Infinite or NaN coefficients in linear constraints are disallowed, and we do not support them in file formats like LP, or MPS. Most often the presence of such coefficients point at an error during...
-
OK, thanks for letting us know, we'll look into this. Robert
-
Hello Laurent, thanks for pointing out that libgurobi81.dylib is not code signed. Which Xcode setting in your project enforces this signage check, and why do you need to build your project with th...
-
This article in the knowledge base looks like what you want: https://support.gurobi.com/hc/en-us/articles/360013197172-How-do-I-find-additional-solutions-to-a-model-
-
I'm assuming that all your variables are unconstrained? In that case, unfortunately, Gurobi will invoke the barrier method nevertheless. You may want to consider building the KKT matrix yourself ...
-
There is no API access to the parameter tuning tool from within R, but you can use the command line tool 'grbtune'. To do so, export your model to a file using the gurobi_write function, and use t...
-
The snippet above redefines the 'test' array within the loop, and hence tries to add SOS constraints based on an unpopulated array of variables. If you want to have an SOS constraint on all of the...
-
It is correct that you cannot directly pass such matrix based data to gurobipy, so that you need another "conversion" step from this data to the modeling objects within gurobipy. What data structu...
-
You should use the method GRBModel.addSOS(), see http://www.gurobi.com/documentation/8.1/refman/java_grbmodel_addsos.html If you want to define an SOS1 constraint on all the item.length^2 variable...
-
Yes, Gurobi will take advantage of the resident basis to compute an optimal solution after a problem modification such as a coefficient change.