This repository is a refactoring of C++ code for a Checkers AI using Monte Carlo Tree Search
To see the refactoring improvement, go to ./metrics/Graphing.
- Optional: Move the StudentAI[.cpp/.h] files from ./metrics/Simple_MCTS to the desired directory in ./src./[Original/Refactored].
- Then, either with Original or Refactored...
cd src/Refactored/build
cmake -S .. -B . -G "Unix Makefiles"
cd ../bin
.\\Checkers.exe 8 8 3 sThanks to Dalton Adcock for helping me write the MCTS code.