[Work in progress]
ASCII Chess game in pure C
Compatible with UNIX-based OS, but only tested on Mac so far.
cd src
chmod 711 make
./make ./chess-b [args] ./chess-b 5Run perft(5) (count leaf nodes of game tree up to 5 ply)
./chess-b [PLAYER-1] [PLAYER-2]Start a game, with AI players using default settings
0: Human player1: Fixed depth alpha-beta AI2: Iterative deepening AI (recommended)3: Quick-and-dirty minimax AI
./chess-b [PLAYER-1] [PLAYER-2] [DEPTH] [EXTENSION]Same as 2 args, but specifies depth of search and maximum extension depth for forcing lines.
