Delta Pruning is a technique similar in concept to futility pruning, only used in the quiescence search. It works as follows: before we make a capture, we test whether the captured piece value plus some safety margin (typically around 200 centipawns) are enough to raise alpha for the current node.
For example, if the side to move is a rook down, it does not bother to test captures of pawns, since they are unlikely to improve matters. Capturing a minor piece, however, might be sufficient, given enough positional compensation. It follows that the safety margin (delta) should be around 200 centipawns, depending on the piece values used by the program.
For safety reasons, delta pruning should be switched off in the late endgame, since otherwise quiescence search would be blind to insufficient material issues and transitions into won endgames made at the expense of some material.
Sample Code
Some processing power may be saved by testing if any move can improve over alpha. Then in truly hopeless nodes we don't do move generation and testing each move against the delta margin. The following code shows how this is done on the CPW-engine (it represents a part of quiescence search responsible for handling a stand pat score):
// get a "stand pat" scoreint val = eval( alpha, beta );// check if it causes a beta cutoffif( val >= beta )return beta;// The next three lines test if alpha can be improved by greatest// possible matrial swing.int BIG_DELTA =975;// queen valueif( isPromotingPawn()) BIG_DELTA +=775;if( val < alpha - BIG_DELTA ){return alpha;}if( alpha < val )
alpha = val;
Table of Contents
Delta Pruning is a technique similar in concept to futility pruning, only used in the quiescence search. It works as follows: before we make a capture, we test whether the captured piece value plus some safety margin (typically around 200 centipawns) are enough to raise alpha for the current node.
For example, if the side to move is a rook down, it does not bother to test captures of pawns, since they are unlikely to improve matters. Capturing a minor piece, however, might be sufficient, given enough positional compensation. It follows that the safety margin (delta) should be around 200 centipawns, depending on the piece values used by the program.
For safety reasons, delta pruning should be switched off in the late endgame, since otherwise quiescence search would be blind to insufficient material issues and transitions into won endgames made at the expense of some material.
Sample Code
Some processing power may be saved by testing if any move can improve over alpha. Then in truly hopeless nodes we don't do move generation and testing each move against the delta margin. The following code shows how this is done on the CPW-engine (it represents a part of quiescence search responsible for handling a stand pat score):See also
Forum Posts
External Links
What links here?
Up one Level