Skip to content

Commit

Permalink
Bench: 27372665
Browse files Browse the repository at this point in the history
  • Loading branch information
TerjeKir committed Nov 15, 2023
1 parent 95562bb commit c5b40ec
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 @@ -151,7 +151,7 @@ static int Quiescence(Thread *thread, Stack *ss, int alpha, const int beta) {

// SEE pruning
if ( futility <= alpha
&& !SEE(pos, move, 1)) {
&& !SEE(pos, move, alpha - futility)) {
bestScore = MAX(bestScore, futility);
continue;
}
Expand Down

0 comments on commit c5b40ec

Please sign in to comment.