Skip to content

bagnalla/mcts_checkers

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

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.

About

MCTS+UCB agent for checkers.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published