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 α
So if the above is my negamax code (copied from wikipedia), and it is called as follows:
negamax(origin, depth, -inf, +inf, 1)
Then, will this function always return a positive value regardless of what depth we call the function with. This is assuming that the heuristic value by itself is always positive.