Skip to content

Commit 0f6c08c

Browse files
syzygy1vondele
authored andcommitted
Do not skip non-recapture ttMove when in check
The qsearch() MovePicker incorrectly skips a non-recapture ttMove when in check (if depth <= DEPTH_QS_RECAPTURES). This is clearly not intended and can cause qsearch() to return a mate score when there is no mate. Introduced in cad300c and 6596f0e, as observed by joergoster in #3171 and #3198. This PR fixes the bug by not skipping the non-recapture ttMove when in check. Passed non-regression STC: https://tests.stockfishchess.org/tests/view/5f9867ea6a2c112b60691b10 LLR: 2.98 (-2.94,2.94) {-1.25,0.25} Total: 27112 W: 2943 L: 2842 D: 21327 Ptnml(0-2): 127, 2170, 8878, 2237, 144 Passed non-regression LTC: https://tests.stockfishchess.org/tests/view/5f9967326a2c112b60691bb0 LLR: 2.99 (-2.94,2.94) {-0.75,0.25} Total: 18392 W: 807 L: 738 D: 16847 Ptnml(0-2): 9, 655, 7802, 718, 12 closes #3199 closes #3198 Bench: 3870606
1 parent 6328135 commit 0f6c08c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/movepick.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,9 @@ MovePicker::MovePicker(const Position& p, Move ttm, Depth d, const ButterflyHist
7373
assert(d <= 0);
7474

7575
stage = (pos.checkers() ? EVASION_TT : QSEARCH_TT) +
76-
!(ttm && (depth > DEPTH_QS_RECAPTURES || to_sq(ttm) == recaptureSquare)
77-
&& pos.pseudo_legal(ttm));
76+
!( ttm
77+
&& (pos.checkers() || depth > DEPTH_QS_RECAPTURES || to_sq(ttm) == recaptureSquare)
78+
&& pos.pseudo_legal(ttm));
7879
}
7980

8081
/// MovePicker constructor for ProbCut: we generate captures with SEE greater

0 commit comments

Comments
 (0)