An Othello / Reversi AI using Monte Carlo Tree Search algorithm. This repo does not include any playable examples. To play against the AI, check out this repo: lukechu10/Othello-GUI.
git
cargo
tool (for building rust code)
- Clone the source code:
git clone https://github.com/lukechu10/Othello-AI.git othello_ai
cd othello_ai/
- Build source code using
cargo
:
cargo build --release # or 'cargo run --release' to run automatically. Make sure you are using --release flag for best performance.