From: Marco Costalba Date: Sat, 18 Feb 2012 09:16:01 +0000 (+0100) Subject: Increase MAX_PLY from 100 to 256 X-Git-Url: https://git.sesse.net/?p=stockfish;a=commitdiff_plain;h=fd35d92c1e639d22ed10fb225272f08bd9afc885 Increase MAX_PLY from 100 to 256 There is no need to limit the maximum ply searched to 100, with deep exclusion search extensions we could reach it even with much smaller search depths. The only drawback is an increase in stack usage, but is limited mainly to id_loop(), in particular the recursive search() functions are not affected. No functional change. Signed-off-by: Marco Costalba --- diff --git a/src/types.h b/src/types.h index 85fddc27..10642ad3 100644 --- a/src/types.h +++ b/src/types.h @@ -99,7 +99,7 @@ typedef uint64_t Key; typedef uint64_t Bitboard; const int MAX_MOVES = 256; -const int MAX_PLY = 100; +const int MAX_PLY = 256; const int MAX_PLY_PLUS_2 = MAX_PLY + 2; const Bitboard FileABB = 0x0101010101010101ULL;