lazy move generation

This commit is contained in:
Moritz 2025-11-20 00:19:35 +01:00
parent a93bfe258c
commit a127815cad
11 changed files with 132 additions and 75 deletions

View file

@ -1,9 +1,7 @@
use chess_engine::engine::Engine;
use chess_engine::uci::uci_mainloop;
use chess_engine::zobrist::init_zobrist;
fn main() {
init_zobrist();
let mut engine = Engine::new("Yakari".to_string(), "EiSiMo".to_string());
uci_mainloop(&mut engine);
}