aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authoreug-vs <eugene@eug-vs.xyz>2023-01-29 03:59:27 +0300
committereug-vs <eugene@eug-vs.xyz>2023-01-29 04:01:42 +0300
commit3667da48bfc5c742275cb9d8493242171aab155c (patch)
tree76e5a9893cd65f471216ceb8b417845708309878 /src/main.rs
parent6b322dd8ea6e5a636a93be8a643f4c17abe43e90 (diff)
downloadchessnost-3667da48bfc5c742275cb9d8493242171aab155c.tar.gz
feat: add "enter move" message
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 7931c63..61f2cd3 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -28,7 +28,7 @@ fn main() {
board.print();
println!("Score for {:?} is now: {}", board.color(), board.quiscence(-INFINITY, INFINITY));
- // Simple pondering during opponent time
+ println!("\nPondering for 3 seconds...");
board.iterative_deepening(5, Duration::from_secs(3));
}
}