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);