From 297c40291a1cc0ca27fecef342501ba1c359f9cd Mon Sep 17 00:00:00 2001 From: VoyagerOne Date: Mon, 17 Jun 2019 17:35:03 -0400 Subject: [PATCH] QuietPick Speed-up Non-functional speedup: no need to generate, score, or sort quiet moves if SkipQuiet is true. Thanks to @mstembera for his suggestion. STC: LLR: 2.95 (-2.94,2.94) [0.00,4.00] Total: 27910 W: 6406 L: 6129 D: 15375 http://tests.stockfishchess.org/tests/view/5d07e0920ebc5925cf0a58a8 Closes https://github.com/official-stockfish/Stockfish/pull/2194 No functional change --- src/movepick.cpp | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/movepick.cpp b/src/movepick.cpp index a70785e7..52ac5b4c 100644 --- a/src/movepick.cpp +++ b/src/movepick.cpp @@ -200,11 +200,15 @@ top: /* fallthrough */ case QUIET_INIT: - cur = endBadCaptures; - endMoves = generate(pos, cur); + if (!skipQuiets) + { + cur = endBadCaptures; + endMoves = generate(pos, cur); - score(); - partial_insertion_sort(cur, endMoves, -4000 * depth / ONE_PLY); + score(); + partial_insertion_sort(cur, endMoves, -4000 * depth / ONE_PLY); + } + ++stage; /* fallthrough */ -- 2.39.2