Skip to content

Commit

Permalink
Bench: 2558501
Browse files Browse the repository at this point in the history
  • Loading branch information
jhonnold committed Nov 20, 2024
1 parent 899c0be commit 043a41f
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 @@ -894,7 +894,7 @@ int Quiesce(int alpha, int beta, int depth, ThreadData* thread, SearchStack* ss)

// stand pat
if (eval >= beta)
return eval;
return (eval + beta) / 2;

if (eval > alpha)
alpha = eval;
Expand Down

0 comments on commit 043a41f

Please sign in to comment.