0

I ma trying to solve an MIP and I noticed that sometimes scip restarts the problem again but the restarting does nothing. It spends a bunch of time trying find cuts and it doesn't find any.

The following is the message that comes before the restart is triggered. Is there a way to disable restarting?

Restart triggered after 50 consecutive estimations that the remaining tree will be large
(run 1, node 2309) performing user restart
Morpheus
  • 3,285
  • 4
  • 27
  • 57

1 Answers1

1

You can disable restarts by setting

estimation/restarts/restartpolicy = n
Leon
  • 1,588
  • 1
  • 7
  • 16
  • 1
    Thanks a lot Leon. As an aside, I was searching in the 6.0.1 documentation (which is what comes first when I googled for "SCIP parameters") and couldn't find this. – Morpheus Feb 02 '21 at 13:47
  • 1
    You should always look at the documentation of the SCIP version you are using ;). In-tree restarts (clairvoyant restarts they are called) were added in Version 7 – Leon Feb 02 '21 at 13:52