Skip to content

Commit

Permalink
Bench: 3486843
Browse files Browse the repository at this point in the history
  • Loading branch information
jhonnold committed Sep 28, 2023
1 parent 05769c3 commit f40a358
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/search.c
Original file line number Diff line number Diff line change
Expand Up @@ -517,8 +517,10 @@ int Negamax(int alpha, int beta, int depth, int cutnode, ThreadData* thread, PV*

UndoMove(move, board);

if (score >= probBeta)
if (score >= probBeta) {
TTPut(tt, board->zobrist, depth - 3, score, BOUND_LOWER, move, ss->ply, ss->staticEval, ttPv);
return score;
}
}
}
}
Expand Down

0 comments on commit f40a358

Please sign in to comment.