Skip to content

Commit

Permalink
Bench: 15471568
Browse files Browse the repository at this point in the history
  • Loading branch information
TerjeKir committed Oct 15, 2023
1 parent 55e7499 commit ffe4184
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 / (1 + improving) - (ss-1)->histScore / 400 >= beta
&& eval - 70 * depth + 110 * improving - (ss-1)->histScore / 400 >= beta
&& (!ttMove || GetHistory(thread, ss, ttMove) > 10000))
return eval;

Expand Down

0 comments on commit ffe4184

Please sign in to comment.