diff --git a/src/search.cpp b/src/search.cpp index 42294ed01..5385c1499 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -1206,8 +1206,7 @@ moves_loop: // When in check, search starts here // Increase reduction if next ply has a lot of fail high if ((ss + 1)->cutoffCnt > 1) - r += 120 + 1024 * ((ss + 1)->cutoffCnt > 2) + 100 * ((ss + 1)->cutoffCnt > 3) - + 1024 * allNode; + r += 256 + 1024 * ((ss + 1)->cutoffCnt > 2) + 1024 * allNode; // For first picked move (ttMove) reduce reduction if (move == ttData.move)