Skip to content

Commit

Permalink
Bench: 25677715
Browse files Browse the repository at this point in the history
  • Loading branch information
TerjeKir committed Dec 10, 2024
1 parent 84213b4 commit c771b13
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 @@ -355,7 +355,7 @@ static int AlphaBeta(Thread *thread, Stack *ss, int alpha, int beta, Depth depth
&& (ss-1)->histScore < 24400
&& pos->nonPawnCount[sideToMove] > (depth > 8)) {

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

ss->move = NOMOVE;
ss->continuation = &thread->continuation[0][0][EMPTY][0];
Expand Down

0 comments on commit c771b13

Please sign in to comment.