]> git.sesse.net Git - stockfish/blobdiff - src/search.cpp
Fix null reduction formula
[stockfish] / src / search.cpp
index 93867f0f0b20859f97598d094a54dedbb0d5f171..0ee25bca1b421a159e60071e2d0d482fb3903b91 100644 (file)
@@ -632,7 +632,7 @@ namespace {
 
         // Null move dynamic reduction based on depth and value
         Depth R =  3 * ONE_PLY
-                 + depth / (2 * ONE_PLY)
+                 + depth / 4
                  + int(eval - beta) / PawnValueMg * ONE_PLY;
 
         pos.do_null_move(st);