From a2711f341fdba0fcbab4d0621da3b6d108fef74a Mon Sep 17 00:00:00 2001 From: David Kruger Date: Sun, 29 Jun 2025 22:51:17 -0700 Subject: [PATCH] Cleanup debug print --- examples/auto_tic_tac_toe.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/examples/auto_tic_tac_toe.rs b/examples/auto_tic_tac_toe.rs index 22c3bff..b6a5387 100644 --- a/examples/auto_tic_tac_toe.rs +++ b/examples/auto_tic_tac_toe.rs @@ -40,7 +40,6 @@ fn main() { // Find the best move match mcts.search() { Ok(action) => { - mcts.print_tree(); println!( "AI chooses: {} (row {}, col {})", action.index,