e.csail.mit.edu/plaat/mtdf.html and http://en.wikipedia.org/wiki/Negascout Transposition table (TT) enhanced Alpha-Beta (from http://www.top-5000.nl/ps/An%20Algorithm%20faster%20than%20negascout%20and%20SSS%20in%20pratice.pdf)
function AlphaBetaWithMemory(n, a, b) { // Check if position is in table and has been searched to sufficient depth. if (retrieve(n)) { if (n.max <= a or n.max == n.min) return n.max; if (n.min >= b) return n.min ; } // Reached the maximum search depth if (n = leaf) { n.min = n.max = g = eval(n); } else { g = -inf; c = firstchild(n); // Search until a cutoff occurs or all children have been considered while g < b and c != null { g = max(g, -AlphaBetaWithMemory(c, -b, -a)); a = max(a, g); c = nextbrother(c); } // Save in transposition table if g <= a then n.max = g; if a < g < b then n.max = n.min = g; if g >= b then n.min = g; } store(n); return g; }
@author Barry Becker