]> git.sesse.net Git - stockfish/blobdiff - src/ucioption.cpp
Document Elo impact of various parts of search
[stockfish] / src / ucioption.cpp
index 4d925d6827332f98b18bce9b7622ee6c7bbfd815..bca4a1f1adb2276cfa76100f870198496ad3cb5b 100644 (file)
@@ -56,10 +56,10 @@ bool CaseInsensitiveLess::operator() (const string& s1, const string& s2) const
 void init(OptionsMap& o) {
 
   // at most 2^32 clusters.
-  const int MaxHashMB = Is64Bit ? 131072 : 2048;
+  constexpr int MaxHashMB = Is64Bit ? 131072 : 2048;
 
   o["Debug Log File"]        << Option("", on_logger);
-  o["Contempt"]              << Option(18, -100, 100);
+  o["Contempt"]              << Option(12, -100, 100);
   o["Threads"]               << Option(1, 1, 512, on_threads);
   o["Hash"]                  << Option(16, 1, MaxHashMB, on_hash_size);
   o["Clear Hash"]            << Option(on_clear_hash);