mirror of
https://github.com/sockspls/badfish
synced 2025-04-30 00:33:09 +00:00
Increase MAX_PLY from 100 to 120
Under some very rare case 100 plies of search could be not enough. Increasing more could lead to crashes due to reached stack size limit on some platforms. Strongly requested by Uri. bench: 8430785
This commit is contained in:
parent
d91079d4b0
commit
52ebf87238
1 changed files with 1 additions and 1 deletions
|
@ -89,7 +89,7 @@ typedef uint64_t Key;
|
||||||
typedef uint64_t Bitboard;
|
typedef uint64_t Bitboard;
|
||||||
|
|
||||||
const int MAX_MOVES = 256;
|
const int MAX_MOVES = 256;
|
||||||
const int MAX_PLY = 100;
|
const int MAX_PLY = 120;
|
||||||
const int MAX_PLY_PLUS_6 = MAX_PLY + 6;
|
const int MAX_PLY_PLUS_6 = MAX_PLY + 6;
|
||||||
|
|
||||||
/// A move needs 16 bits to be stored
|
/// A move needs 16 bits to be stored
|
||||||
|
|
Loading…
Add table
Reference in a new issue