Can the minimax algorithm with alpha-beta pruning yield a different answer than minimax without pruning?

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

Wikipedia says:

Alpha-beta pruning is a sound optimization in that it does not change the score of the result of the algorithm it optimizes.

So, the value does not change. But the concrete realization of it can be different.

link|improve this answer
What do you mean by concrete realization? – Devoted Nov 8 '10 at 21:53
When there are different nodes that all have the same value as the minimum the search might yield a different one. I'm not sure whether there are variants where this can not happen. – smilingthax Nov 8 '10 at 21:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.