]> git.sesse.net Git - stockfish/commitdiff
Fix formatting of previous patch
authorMarco Costalba <mcostalba@gmail.com>
Thu, 16 Jul 2015 06:17:40 +0000 (08:17 +0200)
committerMarco Costalba <mcostalba@gmail.com>
Thu, 16 Jul 2015 06:17:40 +0000 (08:17 +0200)
No functional change.

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