Skip to content

Commit

Permalink
Bench: 16439724
Browse files Browse the repository at this point in the history
  • Loading branch information
TerjeKir committed Oct 25, 2023
1 parent f5e3382 commit c61b43d
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 @@ -328,7 +328,7 @@ static int AlphaBeta(Thread *thread, Stack *ss, int alpha, int beta, Depth depth
&& (ss-1)->histScore < 35000
&& pos->nonPawnCount[sideToMove] > (depth > 8)) {

Depth reduction = 3 + depth / 5 + MIN(3, (eval - beta) / 256);
Depth reduction = 3 + depth / 5 + cutnode + MIN(3, (eval - beta) / 256);

// Remember who last null-moved
Color nullMoverTemp = thread->nullMover;
Expand Down

0 comments on commit c61b43d

Please sign in to comment.