An open API service indexing awesome lists of open source software.

https://github.com/bagnalla/mcts_checkers

MCTS+UCB agent for checkers.
https://github.com/bagnalla/mcts_checkers

Last synced: 3 months ago
JSON representation

MCTS+UCB agent for checkers.

Awesome Lists containing this project

README

        

# mcts_checkers
MCTS+UCB (UCT) agent for checkers in C++. Also includes a basic
alpha-beta minimax agent for playing against.

Based on the algorithm outlined in [Browne et al. 2012](http://mcts.ai/pubs/mcts-survey-master.pdf).

CMake is required.

To build Debug:
```
mkdir Debug
cd Debug
cmake -D CMAKE_BUILD_TYPE=Debug ..
make
```

To build Release:
```
mkdir Release
cd Release
cmake -D CMAKE_BUILD_TYPE=Release ..
make
```

The executable will be `src/mcts_checkers` relative to the build directory.