X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fucioption.cpp;h=57264166b702fd062dcece96e8ad341a9f9289a3;hp=92729355c827cd0d5c3abcb41b0e910353bbef63;hb=339bb8a524a0a6af093b383da9f61b31504be9fe;hpb=ea06200423731c35dc62ed4a40c47e67eac1818a diff --git a/src/ucioption.cpp b/src/ucioption.cpp index 92729355..57264166 100644 --- a/src/ucioption.cpp +++ b/src/ucioption.cpp @@ -130,6 +130,9 @@ namespace { o["MultiPV"] = Option(1, 1, 500); o["UCI_ShowCurrLine"] = Option(false); o["UCI_Chess960"] = Option(false); + o["UCI_AnalyseMode"] = Option(false); + o["UCI_LimitStrength"] = Option(false); + o["UCI_Elo"] = Option(2900, 2100, 2900); // Any option should know its name so to be easily printed for (Options::iterator it = o.begin(); it != o.end(); ++it) @@ -191,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"; - } }