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 }