From 391a08ad88ce9776d5a52b758618fbfebd499345 Mon Sep 17 00:00:00 2001 From: Moritz Date: Sun, 16 Nov 2025 20:49:24 +0100 Subject: [PATCH] alpha beta pruning --- src/uci.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/uci.rs b/src/uci.rs index 9c9500d..47ef0e4 100644 --- a/src/uci.rs +++ b/src/uci.rs @@ -42,7 +42,7 @@ pub fn uci_mainloop(engine: &mut Engine) { } "go" => { // TODO add a lot functionality - println!("{}", engine.search(6)); + println!("bestmove {}", engine.search(6)); } "stop" => { // TODO stop search as soon as possible