diff options
-rw-r--r-- | src/board/engine.rs | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/board/engine.rs b/src/board/engine.rs index 0a99def..821e65a 100644 --- a/src/board/engine.rs +++ b/src/board/engine.rs @@ -135,7 +135,7 @@ impl Board { match self.transposition_table[(self.hash % TTABLE_SIZE) as usize] { Some(item) => { - if item.node_type == NodeType::PV && item.hash == self.hash { + if item.hash == self.hash { moves.insert(0, item.best_move); } } @@ -158,6 +158,14 @@ impl Board { self.unmake_move(mov, captured_piece, ep_target_before, castling_rights_before, hash_before); if score >= beta { + self.transposition_table[(self.hash % TTABLE_SIZE) as usize] = Some(TranspositionTableItem { + hash: self.hash, + best_move: mov, + depth: depth_left, // TODO: should be actual depth searched + node_type: NodeType::Cut, + score, + }); + return (beta, principal_variation); } if score > alpha { @@ -199,7 +207,7 @@ impl Board { match self.transposition_table[(self.hash % TTABLE_SIZE) as usize] { Some(item) => { - if item.node_type == NodeType::PV && item.hash == self.hash { + if item.hash == self.hash { moves.insert(0, item.best_move); } } |