implemented transposition table

This commit is contained in:
Moritz 2025-11-19 10:40:41 +01:00
parent ea9419d7e0
commit 42816a6939
13 changed files with 464 additions and 91 deletions

View file

@ -1,7 +1,9 @@
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);
}