Compare commits

..

2 Commits

Author SHA1 Message Date
krugd a2711f341f Cleanup debug print 2025-06-29 22:51:17 -07:00
krugd 48c93fa197 Renamed the benchmark file 2025-06-29 22:50:54 -07:00
3 changed files with 1 additions and 3 deletions
+1 -1
View File
@@ -19,5 +19,5 @@ thiserror = "~2.0"
divan = "0.1.21"
[[bench]]
name = "example"
name = "e2e"
harness = false
-1
View File
@@ -189,4 +189,3 @@ impl GameState for TicTacToe {
&self.current_player
}
}
-1
View File
@@ -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,