From 817c573e8f3f81d784bf434b96440b22ae96cf21 Mon Sep 17 00:00:00 2001 From: Terje Date: Fri, 8 Sep 2023 16:22:49 +0200 Subject: [PATCH] Bench: 22069011 --- src/search.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/search.c b/src/search.c index a2af91c2..fd5fe074 100644 --- a/src/search.c +++ b/src/search.c @@ -140,6 +140,8 @@ static int Quiescence(Thread *thread, Stack *ss, int alpha, const int beta) { // Avoid pruning until at least one move avoids a terminal loss score if (bestScore <= -TBWIN_IN_MAX) goto search; + mp.onlyNoisy = true; + // Only try moves the movepicker deems good if (mp.stage > NOISY_GOOD) break;