Skip to content

Commit

Permalink
Bench: 19188087
Browse files Browse the repository at this point in the history
  • Loading branch information
TerjeKir committed Oct 23, 2023
1 parent cfdf4d6 commit a62a821
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 @@ -348,7 +348,7 @@ static int AlphaBeta(Thread *thread, Stack *ss, int alpha, int beta, Depth depth
return score >= TBWIN_IN_MAX ? beta : score;
}

int probCutBeta = beta + 200;
int probCutBeta = beta + 200 - 50 * improving;

// ProbCut
if ( depth >= 5
Expand Down

0 comments on commit a62a821

Please sign in to comment.