Skip to content

Commit

Permalink
Bench: 19475006
Browse files Browse the repository at this point in the history
  • Loading branch information
TerjeKir committed Sep 16, 2023
1 parent f556b6a commit c3a9507
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 @@ -317,7 +317,7 @@ static int AlphaBeta(Thread *thread, Stack *ss, int alpha, int beta, Depth depth
// Reverse Futility Pruning
if ( depth < 7
&& eval >= beta
&& eval - 175 * (depth - improving) - (ss-1)->histScore / 400 >= beta
&& eval - 100 * (depth - improving) - (ss-1)->histScore / 400 >= beta
&& (!ttMove || GetHistory(thread, ss, ttMove) > 10000))
return eval;

Expand Down

0 comments on commit c3a9507

Please sign in to comment.