blob: d436f9407c6c1baa883776c36902b80e4160ab0e (
plain)
1
2
3
4
5
6
7
8
9
|
#define BOARD_SIZE 8
#define DEFAULT_FEN "rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1"
#define MAX_DEPTH 4
#define MAX_AVAILABLE_MOVES 64 * 64
#define INFINITY 2000
#define MAX_ZOBRIST_SEEDS 1500
#define TRANSPOSITION_TABLE_SIZE 1000000
#define PLAYER 3
#define FILENAME "record.txt"
|