]> git.sesse.net Git - stockfish/blobdiff - src/search.cpp
Combine increased LMR horizont and fixed null move reduction
[stockfish] / src / search.cpp
index 4449b1be0e2f4408bcb8b792b776221c4aa81517..c8c8d4bda672a45fba916c8ad48168e9c3bcba30 100644 (file)
@@ -1243,9 +1243,8 @@ namespace {
 
         StateInfo st;
         pos.do_null_move(st);
-        int R = (depth >= 5 * OnePly ? 4 : 3); // Null move dynamic reduction
 
-        Value nullValue = -search(pos, ss, -(beta-1), depth-R*OnePly, ply+1, false, threadID);
+        Value nullValue = -search(pos, ss, -(beta-1), depth-4*OnePly, ply+1, false, threadID);
 
         pos.undo_null_move();
 
@@ -1364,7 +1363,7 @@ namespace {
 
       // Try to reduce non-pv search depth by one ply if move seems not problematic,
       // if the move fails high will be re-searched at full depth.
-      if (    depth >= 2*OnePly
+      if (    depth >= 3*OnePly
           &&  moveCount >= LMRNonPVMoves
           && !dangerous
           && !moveIsCapture