
Greg Glockner
- Total activity 176
- Last activity
- Member since
- Following 0 users
- Followed by 1 user
- Votes 20
- Subscriptions 64
Comments
Recent activity by Greg Glockner-
2 things to check: Ensure your local machine configuration was updated correctly so that the computation is running on the cloud. The console and the log should show something like: Capacity avail...
-
I'm sure there are a lot of details which we can't get into on this discussion forum, but let me point you in a direction that hopefully should help. Most importantly, you must formulate your model...
-
Looks like K or SC are either decision variables or linear expressions. This isn't supported.
-
Why not just write a for loop and call Model.addConstr() to add the constraints one at a time?
-
Unfortunately, no. However, the following may be more efficient for this model since it avoids some intermediate Python objects: for i in range(u.shape[2]): model.addMConstrs(u[:, :, i], x, '>', v)
-
You don't need to link with pthread.
-
For C++, you need -lgurobi_c++ -lgurobi90 -lm; see the sample Makefile in the examples/build subdirectory.
-
Official comment See GRBModel::addGenConstrAbs().
-
It sounds like you're trying to solve different models on Gurobi Cloud using different algorithmic parameters. If that's correct, you don't need separate pools: each model can get its own algorithm...
-
Basically, wherever the Django code runs, it needs to see the shared library file libgurobi90.so. To do this with the LD_LIBRARY_PATH variable, you will need to set this as an environment variable ...