mirror of
https://github.com/sockspls/badfish
synced 2025-04-30 16:53:09 +00:00
Increase MAX_MOVES to 256
This should be enough for any legal position, even
the handcrafted ones, like the one presented by Reuven:
1Q5R/4Q1K1/B1Q5/B4Q2/N2Q4/pQ4Q1/pn2Q3/krQ4R w - -
Where currently we crash. This reverts the patch
0049d3f337
of 8/4/2012 where stack
was shrinked due to crashes while in deep analysys.
No functional change.
This commit is contained in:
parent
800410eef1
commit
b742a3f29a
1 changed files with 1 additions and 1 deletions
|
@ -88,7 +88,7 @@ const bool Is64Bit = false;
|
|||
typedef uint64_t Key;
|
||||
typedef uint64_t Bitboard;
|
||||
|
||||
const int MAX_MOVES = 192;
|
||||
const int MAX_MOVES = 256;
|
||||
const int MAX_PLY = 100;
|
||||
const int MAX_PLY_PLUS_6 = MAX_PLY + 6;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue