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