User Tools

Site Tools


chess:programming:search

This is an old revision of the document!


Chess - Programming - Search

int Quiesce( int alpha, int beta ) {
    int stand_pat = Evaluate();
    if( stand_pat >= beta )
        return beta;
    if( alpha < stand_pat )
        alpha = stand_pat;
 
    until( every_capture_has_been_examined )  {
        MakeCapture();
        score = -Quiesce( -beta, -alpha );
        TakeBackMove();
 
        if( score >= beta )
            return beta;
        if( score > alpha )
           alpha = score;
    }
    return alpha;
}

References

chess/programming/search.1633992472.txt.gz · Last modified: 2021/10/11 22:47 by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki