Do TT cutoffs before LMP, use TT move as starting best_move and readability changes
This commit is contained in:
@@ -207,7 +207,7 @@ fn uci_option(option_iter: &mut SplitWhitespace, game: &mut Game) -> anyhow::Res
|
||||
let size = value
|
||||
.parse::<usize>()
|
||||
.map_err(|_| anyhow!("Invalid value for Hash"))?;
|
||||
game.tt = TranspositionTable::new_with_mb_size(size);
|
||||
game.tt = TranspositionTable::with_capacity(size);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user