]> git.sesse.net Git - stockfish/blobdiff - src/search.cpp
Extension for king moves changing castling rights
[stockfish] / src / search.cpp
index c9526ec3c683e38a013089dfcd98bb661f3f2c0e..8a32e827488739ea351a4ee77d0532138b578ffa 100644 (file)
@@ -943,6 +943,12 @@ moves_loop: // When in check, search starts from here
                &&  pos.see_ge(move))
           extension = ONE_PLY;
 
+      // Extension for king moves that change castling rights
+      if (   type_of(movedPiece) == KING
+          && pos.can_castle(us)
+          && depth < 12 * ONE_PLY)
+          extension = ONE_PLY;
+
       // Calculate new depth for this move
       newDepth = depth - ONE_PLY + extension;