X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fucioption.cpp;h=57264166b702fd062dcece96e8ad341a9f9289a3;hb=595a90dfd0cd393a8805f4f51cf5c5d8b264c121;hp=e25877fe462fdb6801da62e293983f6fae649862;hpb=a1096e55cfccd9700602287a15ac4051746db953;p=stockfish diff --git a/src/ucioption.cpp b/src/ucioption.cpp index e25877fe..57264166 100644 --- a/src/ucioption.cpp +++ b/src/ucioption.cpp @@ -194,15 +194,6 @@ void init_uci_options() { options["Threads"].defaultValue = stringify(Min(cpu_count(), 7)); options["Threads"].currentValue = stringify(Min(cpu_count(), 7)); - - // Increase the minimum split depth when the number of CPUs is big. - // It would probably be better to let this depend on the number of threads - // instead. - if (cpu_count() > 4) - { - options["Minimum Split Depth"].defaultValue = "6"; - options["Minimum Split Depth"].currentValue = "6"; - } }