From 70f14117fb9219162b1bcb12418cf1cbc1586203 Mon Sep 17 00:00:00 2001 From: Terje Date: Sat, 28 Dec 2024 21:34:06 +0100 Subject: [PATCH] Bench: 27788674 --- src/search.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/search.c b/src/search.c index 3399e4e9..14593b3c 100644 --- a/src/search.c +++ b/src/search.c @@ -552,7 +552,7 @@ static int AlphaBeta(Thread *thread, Stack *ss, int alpha, int beta, Depth depth // Reduce more in cut nodes r += 2 * cutnode; - r -= MIN(2, evalCorrection / 128); + r -= MIN(2, evalCorrection / 256); // Depth after reductions, avoiding going straight to quiescence as well as extending Depth lmrDepth = CLAMP(newDepth - r, 1, newDepth);