Skip to content

Commit

Permalink
big transposition table
Browse files Browse the repository at this point in the history
  • Loading branch information
vuonghy2442 committed Jan 23, 2024
1 parent 53acfa5 commit 717a13a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/solver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ fn solve_game(
done: &Sender<()>,
) -> (SearchResult, Option<Vec<MoveType>>) {
let mut tp_hist = HashSet::<Encode>::new();
let mut tp = Cache::<Encode, ()>::new(1024 * 1024 * 32);
let mut tp = Cache::<Encode, ()>::new(1024 * 1024 * 256);
let mut move_list = Vec::<MoveType>::new();
let mut history = Vec::<MoveType>::new();

Expand Down

0 comments on commit 717a13a

Please sign in to comment.