mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-21 01:27:16 +08:00
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 <mcostalba@gmail.com>
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user