diff options
Diffstat (limited to 'benches')
-rw-r--r-- | benches/negamax.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/benches/negamax.rs b/benches/negamax.rs index b9e38df..33c90ea 100644 --- a/benches/negamax.rs +++ b/benches/negamax.rs @@ -13,8 +13,8 @@ fn main() { board.print(); for mov in pv { println!("{:?}", mov); + println!("Eval for {:?}: {}", board.color(), board.evaluate(None)); board.make_move(mov); board.print(); - println!("Eval for {:?}: {}", board.color(), board.material_advantage()); } } |