Error while trying to execute [solver] #581
Unanswered
EnricoSteez
asked this question in
Q&A
Replies: 1 comment
-
Today I met the same problem.Have you solved it? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I used PuLP on the same sort of problem for months now and I recently switched to a more complex version of the problem, with a lot of decision variables.
I am running the problem several (1260 to be precise) times, with all possible combination of the parameters that at the moment you see hardcoded in the simplified version.
When using 1000 items (N=1000), I get this error: pulp.apis.core.PulpSolverError: PuLP: Error while trying to execute gurobi_cl.
If I go down to 200 items , I get the error only after 27 iterations.
I think it has to to with the size of the problem, but I am not sure.
The size of the main decision variable X is a 3D binary matrix of size [1000,95,100]
The size of the secondary decision variable Z is a 2D binary matrix of size [95,100]
Do you think this is "too much"?
I cannot paste a minimal RUNNABLE version of the problem, since it is a research project and I cannot disclose some details, I hope this bit of code can help telling whether the size of the problem is too large for the free version of gurobi
These are the information from the solver during the crashed run:
Beta Was this translation helpful? Give feedback.
All reactions