I would like to solve a small-ish Mixed Integer Program using COIN-CBC (or any other free MIP solver available from PuLP), but with a time limit of, say, 10 seconds. However, the maxSeconds argument does not seem to work for me.
For an example instance, I call the solver without time limit this way:
prob.solve(pulp.PULP_CBC_CMD())
I call it with time limit this way:
prob.solve(pulp.PULP_CBC_CMD(maxSeconds=10))
The former terminates in 50.89 seconds, solution value 15.65287864835175. The latter terminates in 53.53 seconds, solution value 15.65287864835175. I would have expected it to terminate in (roughly) 10 seconds, probably with a higher solution value.
(I am aware of this post: Time limit for mixed integer programming with Python PuLP. But its answers refer to CPLEX and GUROBI, which I cannot use; I need a free solver.)
Am I doing something wrong?
Thank you for your suggestions. I think my question is answered.
I looked at the log-files. (For completeness: I upgraded to PuLP 2.3 to do so, meaning I now use the argument timeLimit instead of maxSeconds.) I think I understand what's going on: that is, I think presolving this problem takes about 67 seconds, and the time limit does not chop off presolving.
Here's the log without time limit:
Here's the log with time limit:
From the second log, we can see that the time limit is indeed passed and acknowledged, and that CBC exits without finding a feasible solution, as soon as it can. We also see, from the first log, that no branching was done at all: apparently, the problem was presolved, which took about 67 seconds.
This answers my question: maxSeconds (or timeLimit) is being registered just fine. Apparently, the time limit does not chop off presolving, but I guess I have bigger problems if the presolving takes more than ten seconds.