Code: Select all
negamax(depth, -alpha - 1, -alpha)
Code: Select all
negamax(depth, -beta, -alpha)
Is there an actually correct use of one over the other?
Moderator: Ras
Code: Select all
negamax(depth, -alpha - 1, -alpha)
Code: Select all
negamax(depth, -beta, -alpha)