From 11c5a82e72841994c965e8bd545d8dbcf2922986 Mon Sep 17 00:00:00 2001 From: Terje Date: Mon, 16 Oct 2023 16:01:35 +0200 Subject: [PATCH] Bench: 15343271 --- src/search.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/search.c b/src/search.c index 4de2519d..3491b337 100644 --- a/src/search.c +++ b/src/search.c @@ -492,8 +492,6 @@ static int AlphaBeta(Thread *thread, Stack *ss, int alpha, int beta, Depth depth r -= ss->histScore / 8192; // Reduce less in pv nodes r -= pvNode; - // Reduce less when improving - r -= improving; // Reduce more for the side that was last null moved against r += opponent == thread->nullMover; // Reduce quiets more if ttMove is a capture