increased tt size to 4GB

This commit is contained in:
Moritz 2025-11-19 11:33:40 +01:00
parent 05dc19925c
commit 6c5e92aade
2 changed files with 1 additions and 2 deletions

Binary file not shown.

View file

@ -16,8 +16,7 @@ impl Engine {
// Use the standard starting position
let board = Board::from_fen("rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1");
// Create TT with 64 MB
let tt = TranspositionTable::new(64);
let tt = TranspositionTable::new(4096);
Engine {
name,