Skip to content

Commit

Permalink
Trying MAX_MOVES=16K
Browse files Browse the repository at this point in the history
  • Loading branch information
dpldgr committed Nov 8, 2024
1 parent 92e3fae commit 9a4db5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/types.h
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ constexpr int SQUARE_BITS = 6;
#define USE_HEAP_INSTEAD_OF_STACK_FOR_MOVE_LIST

#ifdef ALLVARS
constexpr int MAX_MOVES = 65536;
constexpr int MAX_MOVES = 16*1024;
#ifdef USE_HEAP_INSTEAD_OF_STACK_FOR_MOVE_LIST
constexpr int MAX_PLY = 246;
#else
Expand Down

0 comments on commit 9a4db5c

Please sign in to comment.