]> git.sesse.net Git - stockfish/blobdiff - src/ucioption.cpp
Add TT prefetching support
[stockfish] / src / ucioption.cpp
index a0269464db99f7d5ee1b26f08a70140602d6aaea..57264166b702fd062dcece96e8ad341a9f9289a3 100644 (file)
@@ -131,6 +131,8 @@ namespace {
     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)
@@ -192,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";
-  }
 }