Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 463 Bytes

README.md

File metadata and controls

22 lines (16 loc) · 463 Bytes

Checkers Engine

A simple engine for russian checkers.

Uses minimax position scoring and alpha-beta pruning with some heuristics.

Dependencies:

  1. C/C++ compiler (C++ 17 or greater)

Build / RUN

  1. mkdir build && cd build
  2. cmake ..
  3. make all
  4. ./checkers

TODO:

  1. Better branching order strategy
  2. BFS for branches – which leads to...
  3. Stopping engine on time
  4. Support world-wide position notation
  5. Improving interface, UI