X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Ftypes.h;h=4e5de7f72f71214aa63c6616b960c7cd18464c58;hp=d27f390a2d970d0eeeeb2acd39b8a527f43874de;hb=45b0aea875860e9f0fe2d0435ee6163906639194;hpb=002062ae934c1fae3e56157e8e7e6451b552ada5 diff --git a/src/types.h b/src/types.h index d27f390a..4e5de7f7 100644 --- a/src/types.h +++ b/src/types.h @@ -90,7 +90,7 @@ typedef uint64_t Bitboard; const int MAX_MOVES = 192; const int MAX_PLY = 100; -const int MAX_PLY_PLUS_2 = MAX_PLY + 2; +const int MAX_PLY_PLUS_6 = MAX_PLY + 6; /// A move needs 16 bits to be stored /// @@ -196,7 +196,7 @@ enum Depth { DEPTH_ZERO = 0 * ONE_PLY, DEPTH_QS_CHECKS = -1 * ONE_PLY, DEPTH_QS_NO_CHECKS = -2 * ONE_PLY, - DEPTH_QS_RECAPTURES = -7 * ONE_PLY, + DEPTH_QS_RECAPTURES = -5 * ONE_PLY, DEPTH_NONE = -127 * ONE_PLY };