alpha beta pruning

This commit is contained in:
Moritz 2025-11-16 20:49:24 +01:00
parent eb19606360
commit 391a08ad88

View file

@ -42,7 +42,7 @@ pub fn uci_mainloop(engine: &mut Engine) {
} }
"go" => { "go" => {
// TODO add a lot functionality // TODO add a lot functionality
println!("{}", engine.search(6)); println!("bestmove {}", engine.search(6));
} }
"stop" => { "stop" => {
// TODO stop search as soon as possible // TODO stop search as soon as possible