]> git.sesse.net Git - stockfish/commitdiff
Raise Min Split Depth
authorMarco Costalba <mcostalba@gmail.com>
Mon, 25 Mar 2013 19:04:49 +0000 (20:04 +0100)
committerMarco Costalba <mcostalba@gmail.com>
Mon, 25 Mar 2013 19:04:49 +0000 (20:04 +0100)
Raise the limit to 12 so to allow people to test
on many cores machines.

Suggested by Gary and Martin.

No functional change.

src/ucioption.cpp

index 099babd4710f72420ea177186e32f8989eb07ba3..eada2a431c8f7fe523988277a70ff943655b99f5 100644 (file)
@@ -70,7 +70,7 @@ void init(OptionsMap& o) {
   o["Passed Pawns (Middle Game)"]  = Option(100, 0, 200, on_eval);
   o["Passed Pawns (Endgame)"]      = Option(100, 0, 200, on_eval);
   o["Space"]                       = Option(100, 0, 200, on_eval);
-  o["Min Split Depth"]             = Option(msd, 4, 7, on_threads);
+  o["Min Split Depth"]             = Option(msd, 4, 12, on_threads);
   o["Max Threads per Split Point"] = Option(5, 4, 8, on_threads);
   o["Threads"]                     = Option(cpus, 1, MAX_THREADS, on_threads);
   o["Use Sleeping Threads"]        = Option(true);