Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 430 Bytes

File metadata and controls

33 lines (23 loc) · 430 Bytes

Monte Carlo Tree Search

Background: Algorithm Framework

Original Paper

Algorithm Main Steps:

  1. Selection
  2. Expansion
  3. Simulation / Rollout
  4. Backpropagation

Appendix: Build & Run

CMakeList.txt mainly for github workflows' building process.

If you want to build manually, use Makefile there.

  • Build
make
  • Run:
./mcts.so
  • Clean:
make clean