]> git.sesse.net Git - stockfish/commit
Do not skip non-recapture ttMove when in check
authorsyzygy1 <3028851+syzygy1@users.noreply.github.com>
Tue, 27 Oct 2020 18:22:41 +0000 (19:22 +0100)
committerJoost VandeVondele <Joost.VandeVondele@gmail.com>
Wed, 28 Oct 2020 22:40:37 +0000 (23:40 +0100)
commit0f6c08c73f516873b312cb8fce0d824a2167b075
tree9ca43b916dec972990a650245044fcc152882221
parent6328135264d3b13a2cef3f0c835a27192cae0f40
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 https://github.com/official-stockfish/Stockfish/pull/3199
closes https://github.com/official-stockfish/Stockfish/pull/3198

Bench: 3870606
src/movepick.cpp