function MTDF(root : node_type; f : integer; d : integer) : integer; g = f; upperbound = +INFINITY; lowerbound = -INFINITY; repeat if (g == lowerbound) beta = g + 1; else beta = g; g = AlphaBetaWithMemory(root, beta - 1, beta, d); if (g < beta) upperbound = g; else lowerbound = g; until lowerbound >= upperbound; return g;TODO: add iterative deepening (https://chessprogramming.wikispaces.com/MTD(f)) @author Barry Becker
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|