pub trait TranspositionTable<T: Eq + Hash + Game> {
// Required methods
fn get(&self, board: &T) -> Option<Score>;
fn insert(&mut self, board: T, score: Score);
fn has(&self, board: &T) -> bool;
}
Expand description
A memoization strategy for a perfect-information sequential game.