A way to optimize Minimax, Alpha-Beta Pruning skips some of the recursive computations that are decidedly unfavourable.
The benefit of alpha–beta pruning lies in the fact that branches of the search tree can be eliminated. This way, the search time can be limited to the ‘more promising’ subtree, and a deeper search can be performed in the same time.