Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jhonnold committed Oct 6, 2023
1 parent 17d9ac2 commit da01528
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 @@ -553,7 +553,7 @@ int Negamax(int alpha, int beta, int depth, int cutnode, ThreadData* thread, PV*
int killerOrCounter = move == mp.killer1 || move == mp.killer2 || move == mp.counter;
int history = GetHistory(ss, thread, move);

if (bestScore > -WINNING_ENDGAME && !isPV) {
if (bestScore > -TB_WIN_BOUND && !isPV) {
if (!isRoot && legalMoves >= LMP[improving][depth])
skipQuiets = 1;

Expand Down

0 comments on commit da01528

Please sign in to comment.