Skip to content

Commit

Permalink
Bench: 23939234
Browse files Browse the repository at this point in the history
  • Loading branch information
TerjeKir committed Dec 14, 2024
1 parent aadcb3a commit 1a5f7a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/search.c
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ static int AlphaBeta(Thread *thread, Stack *ss, int alpha, int beta, Depth depth

// Cut if the reduced depth search beats the threshold, terminal scores are exact
if (score >= probCutBeta) {
NoisyHistoryUpdate(move, Bonus(depth - 4));
NoisyHistoryUpdate(move, Bonus(depth));
return score < TBWIN_IN_MAX ? score - 160 : score;
}
}
Expand Down

0 comments on commit 1a5f7a3

Please sign in to comment.