1 2 3 4 5 6 7 8 9 10 11 12 13 14
//! Strategy implementations. pub mod iterative; #[cfg(not(target_arch = "wasm32"))] pub mod mcts; pub mod negamax; pub mod random; #[cfg(not(target_arch = "wasm32"))] pub mod ybw; mod common; #[cfg(not(target_arch = "wasm32"))] mod sync_util; mod table;