Skip to content

Commit

Permalink
Bench: 19025267
Browse files Browse the repository at this point in the history
  • Loading branch information
TerjeKir committed Sep 17, 2023
1 parent 555cad0 commit b2bdf60
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 @@ -354,7 +354,7 @@ static int AlphaBeta(Thread *thread, Stack *ss, int alpha, int beta, Depth depth
if ( depth >= 5
&& (!ttHit || ttBound == BOUND_LOWER || ttScore >= probCutBeta)) {

InitProbcutMP(&mp, thread, ss, ttMove, probCutBeta - ss->eval);
InitProbcutMP(&mp, thread, ss, moveIsNoisy(ttMove) ? ttMove : NOMOVE, probCutBeta - ss->eval);

Move move;
while ((move = NextMove(&mp))) {
Expand Down

0 comments on commit b2bdf60

Please sign in to comment.