]> git.sesse.net Git - stockfish/blobdiff - src/search.cpp
Fix formatting of previous patch
[stockfish] / src / search.cpp
index b9ff56fbd2d2b3297fdd9e416efa7d03fcfda37b..496df5db93f18d553f2634bcdcfa07a927fabea4 100644 (file)
@@ -959,8 +959,8 @@ moves_loop: // When in check and at SpNode search starts from here
               ss->reduction += ONE_PLY;
 
           if (   History[pos.piece_on(to_sq(move))][to_sq(move)] > VALUE_ZERO
               ss->reduction += ONE_PLY;
 
           if (   History[pos.piece_on(to_sq(move))][to_sq(move)] > VALUE_ZERO
-                  && CounterMovesHistory[pos.piece_on(prevMoveSq)][prevMoveSq]
-                                        [pos.piece_on(to_sq(move))][to_sq(move)] > VALUE_ZERO)
+              && CounterMovesHistory[pos.piece_on(prevMoveSq)][prevMoveSq]
+                                    [pos.piece_on(to_sq(move))][to_sq(move)] > VALUE_ZERO)
               ss->reduction = std::max(DEPTH_ZERO, ss->reduction - ONE_PLY);
 
           // Decrease reduction for moves that escape a capture
               ss->reduction = std::max(DEPTH_ZERO, ss->reduction - ONE_PLY);
 
           // Decrease reduction for moves that escape a capture