diff options
| author | Mike White <botahamec@outlook.com> | 2021-09-15 20:50:57 -0400 |
|---|---|---|
| committer | Mike White <botahamec@outlook.com> | 2021-09-15 20:50:57 -0400 |
| commit | 022ad804720a9cede6e8e463ad4bf82db3588f84 (patch) | |
| tree | c269cd42405d85c28b8205c407291997fb7b393a /ai/src/lib.rs | |
| parent | 01b456b4fef8ce4a002f870e5385424614a2a5fb (diff) | |
Removed print statement
Diffstat (limited to 'ai/src/lib.rs')
| -rw-r--r-- | ai/src/lib.rs | 1 |
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); |
