]> git.sesse.net Git - stockfish/blobdiff - src/search.cpp
Simplify one multicut extension
[stockfish] / src / search.cpp
index c2d35796231b0b9ebcb4a5645553e343a28d46b5..96b29d1e8ed28e0d04b9236a4d99b548becb2af2 100644 (file)
@@ -1104,10 +1104,6 @@ moves_loop: // When in check, search starts here
               // If the eval of ttMove is less than value, we reduce it (negative extension) (~1 Elo)
               else if (ttValue <= value)
                   extension = -1;
-
-              // If the eval of ttMove is less than alpha, we reduce it (negative extension) (~1 Elo)
-              else if (ttValue <= alpha)
-                  extension = -1;
           }
 
           // Check extensions (~1 Elo)