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
9
10
11
#[cfg(feature = "uniffi")]
uniffi::setup_scaffolding!();

pub mod action;
pub mod mcts;
pub mod mdp;
mod node;
pub mod policy;
pub mod rand;
pub mod strategy;
mod ucb1;