C++ Chess AI
This project uses CMake. To build:
mkdir build
cd build
cmake ..
makeThe executable will be located at build/chess-king.
./build/chess-king -H <path to input history file> -m <path to output move file>-H: Path to the input history file containing moves in UCI long algebraic notation.-m: Path where the AI will write its next move.
- Pure C++ (STL only)
- Single-threaded
- No third-party dependencies