0

As far as I know, other solvers which are available in or-tools can set specific random seed, but i couldn't find the way for scip solver.

How can I seed the SCIP solver?

  • 1
    Did you try to follow [this](https://github.com/google/or-tools/issues/1609) and [this](https://www.scipopt.org/doc/html/PARAMETERS.php)? – sascha May 21 '22 at 14:11

1 Answers1

1

I am not that familiar with or-tools. But the random seed in SCIP is an integer parameter. So any way you would change another parameter is how you change the random seed. To me it seems there is a setParams function in or-tools that should do the trick.

Leon
  • 1,588
  • 1
  • 7
  • 16