function negamax(node, depth, α, β, color)
if node is a terminal node or depth = 0
return color * the heuristic value of node
else
foreach child of node
val := -negamax(child, depth-1, -β, -α, -color)
{the following if statement constitutes alpha-beta pruning}
if val≥β
return val
if val≥α
α:=val
return α
因此,如果以上是我的“最高法典”(由“主人”组成),则其名称如下:
negamax(origin, depth, -inf, +inf, 1)
然后,无论我们称之为这一职能的深度如何,这一职能将永远恢复积极的价值。 假设这种冷漠的价值本身总是是积极的。