From 5cc90ef67ff4b8ac7e1a2e95c7833f201ea6b20d Mon Sep 17 00:00:00 2001 From: Terje Date: Mon, 23 Dec 2024 04:08:50 +0100 Subject: [PATCH] Bench: 28963785 --- src/search.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/search.c b/src/search.c index 8f0feb29..7f1d70b6 100644 --- a/src/search.c +++ b/src/search.c @@ -550,7 +550,7 @@ static int AlphaBeta(Thread *thread, Stack *ss, int alpha, int beta, Depth depth // Reduce more in cut nodes r += 2 * cutnode; // Reduce less if the difference between static eval and eval is large - r -= abs(ss->staticEval - eval) > 128; + r -= abs(ss->staticEval - eval) > 256; // Depth after reductions, avoiding going straight to quiescence as well as extending Depth lmrDepth = CLAMP(newDepth - r, 1, newDepth);