mct-rs 0.4.1

A fast, flexible, and simple implementation of Monte Carlo Tree Search (MCTS) algorithm in Rust
Documentation
1
2
3
4
5
6
7
8
/// Different strategies for selecting the final action after MCTS
#[cfg_attr(feature = "uniffi", derive(uniffi::Enum))]
pub enum Strategy {
    MostVisited,
    HighestQValue,
    Probabilistic,
    HeuristicWin, // terminal/winning move aware
}