Skip to content

Commit

Permalink
Bench: 28397721
Browse files Browse the repository at this point in the history
  • Loading branch information
TerjeKir committed Nov 13, 2023
1 parent 6ffe42b commit b4e0d24
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 @@ -311,7 +311,7 @@ static int AlphaBeta(Thread *thread, Stack *ss, int alpha, int beta, Depth depth
// Reverse Futility Pruning
if ( depth < 7
&& eval >= beta
&& eval - 80 * depth - (ss-1)->histScore / 230 >= beta
&& eval - 80 * depth + 120 * improving - (ss-1)->histScore / 230 >= beta
&& (!ttMove || GetHistory(thread, ss, ttMove) > 7300))
return eval;

Expand Down

0 comments on commit b4e0d24

Please sign in to comment.