]> git.sesse.net Git - stockfish/blobdiff - src/search.cpp
Small trivial clean-ups, February 2021
[stockfish] / src / search.cpp
index d77ab691d62b34d68e678801c120ae4d607fbbf5..b5d21b9d5585c2cfbeed24a6470f9df69c8aa907 100644 (file)
@@ -1025,12 +1025,12 @@ moves_loop: // When in check, search starts from here
       movedPiece = pos.moved_piece(move);
       givesCheck = pos.gives_check(move);
 
-      // Indicate PvNodes that will probably fail low if node was searched with non-PV search 
+      // Indicate PvNodes that will probably fail low if node was searched with non-PV search
       // at depth equal or greater to current depth and result of this search was far below alpha
-      bool likelyFailLow =    PvNode 
-                           && ttMove 
-                           && (tte->bound() & BOUND_UPPER) 
-                           && ttValue < alpha + 200 + 100 * depth 
+      bool likelyFailLow =    PvNode
+                           && ttMove
+                           && (tte->bound() & BOUND_UPPER)
+                           && ttValue < alpha + 200 + 100 * depth
                            && tte->depth() >= depth;
 
       // Calculate new depth for this move
@@ -1180,8 +1180,8 @@ moves_loop: // When in check, search starts from here
           if (th.marked())
               r++;
 
-          // Decrease reduction if position is or has been on the PV 
-          // and node is not likely to fail low (~10 Elo)
+          // Decrease reduction if position is or has been on the PV
+          // and node is not likely to fail low. (~10 Elo)
           if (ss->ttPv && !likelyFailLow)
               r -= 2;