mct-rs 0.4.0

A fast, flexible, and simple implementation of Monte Carlo Tree Search (MCTS) algorithm in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
## MCTS
MCT-RS: A fast, flexible MCTS(Monte Carlo Tree Search) library for Rust


## Credit
[gibberblot](https://gibberblot.github.io/rl-notes/single-agent/mcts.html)


### Future Plans
1. [x] Allow users provide their own dynamic Multi-armed bandit implementations
2. [ ] Allow reward to be a trait to be dynamically used by others (must implement From<f64>, Into<f64>)
3. [ ] Provide documentation