diff options
-rw-r--r-- | src/config.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/config.h b/src/config.h index 517181c..d436f94 100644 --- a/src/config.h +++ b/src/config.h @@ -1,8 +1,9 @@ #define BOARD_SIZE 8 #define DEFAULT_FEN "rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1" -#define MAX_DEPTH 5 +#define MAX_DEPTH 4 #define MAX_AVAILABLE_MOVES 64 * 64 -#define INFINITY 1000000 +#define INFINITY 2000 #define MAX_ZOBRIST_SEEDS 1500 #define TRANSPOSITION_TABLE_SIZE 1000000 -#define PLAYER BLACK +#define PLAYER 3 +#define FILENAME "record.txt" |