aboutsummaryrefslogtreecommitdiff
path: root/benches/search.rs
diff options
context:
space:
mode:
Diffstat (limited to 'benches/search.rs')
-rw-r--r--benches/search.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/benches/search.rs b/benches/search.rs
index 41027f9..797638e 100644
--- a/benches/search.rs
+++ b/benches/search.rs
@@ -6,7 +6,7 @@ fn main() {
let mut board = Board::from_FEN(fen);
let start = Instant::now();
- let (score, pv) = board.iterative_deepening(6, Duration::from_secs(15));
+ let (score, pv) = board.iterative_deepening(6, Duration::from_secs(15), true);
println!("Finished in {:?}: score={:?} {:?}", start.elapsed(), score, pv);
board.print();