Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Minimax algorithm with/without Alpha-Beta Pruning

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

like image 223
Devoted Avatar asked Feb 21 '26 01:02

Devoted


1 Answers

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.

like image 141
smilingthax Avatar answered Feb 23 '26 17:02

smilingthax