1/// Different strategies for selecting the final action after MCTS 2#[cfg_attr(feature = "uniffi", derive(uniffi::Enum))] 3pub enum Strategy { 4 MostVisited, 5 HighestQValue, 6 Probabilistic, 7 HeuristicWin, // terminal/winning move aware 8}