1
0
Fork 0
mirror of https://github.com/sockspls/badfish synced 2025-04-30 00:33:09 +00:00

Fix evasion pruning condition

Avoid incorrect mate scores in positions like

BK5/1R4b1/2k1Np2/3p3b/2p3pq/p1rB4/n2n1p2/8 w - -

Thanks for Jouni Uski for reporting the problem

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
Joona Kiiski 2010-04-13 18:25:50 +03:00 committed by Marco Costalba
parent a4a0ffce71
commit 9a3fc4d3fb

View file

@ -1713,7 +1713,7 @@ namespace {
// Detect blocking evasions that are candidate to be pruned // Detect blocking evasions that are candidate to be pruned
evasionPrunable = isCheck evasionPrunable = isCheck
&& bestValue != -VALUE_INFINITE && bestValue > value_mated_in(PLY_MAX)
&& !pos.move_is_capture(move) && !pos.move_is_capture(move)
&& pos.type_of_piece_on(move_from(move)) != KING && pos.type_of_piece_on(move_from(move)) != KING
&& !pos.can_castle(pos.side_to_move()); && !pos.can_castle(pos.side_to_move());