From 7f3582344c24a001b2a4a213a4b288828dded618 Mon Sep 17 00:00:00 2001 From: Terje Date: Thu, 19 Oct 2023 17:10:31 +0200 Subject: [PATCH] Bench: 19695225 --- src/search.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/search.c b/src/search.c index 8d83444c..bc24bdfa 100644 --- a/src/search.c +++ b/src/search.c @@ -376,7 +376,7 @@ static int AlphaBeta(Thread *thread, Stack *ss, int alpha, int beta, Depth depth // Cut if the reduced depth search beats the threshold if (score >= probCutBeta) - return score; + return score - 200; } }