A simple engine for russian checkers.
Uses minimax position scoring and alpha-beta pruning with some heuristics.
- C/C++ compiler (C++ 17 or greater)
mkdir build && cd build
cmake ..
make all
./checkers
- Better branching order strategy
- BFS for branches – which leads to...
- Stopping engine on time
- Support world-wide position notation
- Improving interface, UI