]> git.sesse.net Git - stockfish/blobdiff - src/search.cpp
Suppress info strings before 'uci'
[stockfish] / src / search.cpp
index edc020fd6900f289c2dd33f75eb7327476ce60d2..4650b1579bf0e11dafd78722151ab5d54f0370d5 100644 (file)
@@ -192,7 +192,7 @@ namespace {
 void Search::init() {
 
   for (int i = 1; i < MAX_MOVES; ++i)
-      Reductions[i] = int((22.0 + std::log(Threads.size())) * std::log(i));
+      Reductions[i] = int((22.0 + 2 * std::log(Threads.size())) * std::log(i));
 }