]> git.sesse.net Git - stockfish/blobdiff - src/search.cpp
Simplify the thread term for reduction formula
[stockfish] / src / search.cpp
index 6cb42cc3a38ac3da6cdc64bfab31b9237dda383b..c69b240836e68e129c7bfc8f4542214eaa8d4af5 100644 (file)
@@ -152,7 +152,7 @@ namespace {
 void Search::init() {
 
   for (int i = 1; i < MAX_MOVES; ++i)
-      Reductions[i] = int((21.3 + 2 * std::log(Threads.size())) * std::log(i + 0.25 * std::log(i)));
+      Reductions[i] = int(21.3 * std::log(i + 0.25 * std::log(i)));
 }