Chess - Programming - Aspiration Search

By default, we start searching a position with alpha and beta set to negative infinity and infinity respectively (a so-called infinite window).

Using an aspiration search, we make a guess as to the score that will be returned, say x, and set alpha and beta to x-d and x+d respectively, where d is some integer.


Aspiration Search