summaryrefslogtreecommitdiff
path: root/ai
diff options
context:
space:
mode:
Diffstat (limited to 'ai')
-rw-r--r--ai/src/lib.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/ai/src/lib.rs b/ai/src/lib.rs
index 89fd345..17b5441 100644
--- a/ai/src/lib.rs
+++ b/ai/src/lib.rs
@@ -64,7 +64,6 @@ pub fn best_move(depth: usize, board: CheckersBitBoard) -> Move {
let current_eval = eval(depth - 1, best_eval, 1.0, unsafe {
current_move.apply_to(board)
});
- println!("{} {}", current_move, current_eval);
if current_eval > best_eval {
best_eval = current_eval;
best_move = MaybeUninit::new(current_move);