Skip to content

Commit

Permalink
bench: 1018300
Browse files Browse the repository at this point in the history
bench: 1018300
  • Loading branch information
FauziAkram authored Nov 23, 2024
1 parent b7f1734 commit bbf4d33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/search.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -856,7 +856,7 @@ Value Search::Worker::search(
// Step 11. ProbCut (~10 Elo)
// If we have a good enough capture (or queen promotion) and a reduced search
// returns a value much above beta, we can (almost) safely prune the previous move.
probCutBeta = beta + 187 - 53 * improving - 27 * opponentWorsening;
probCutBeta = beta + 187 - 56 * improving;
if (!PvNode && depth > 3
&& std::abs(beta) < VALUE_TB_WIN_IN_MAX_PLY
// If value from transposition table is lower than probCutBeta, don't attempt
Expand Down

0 comments on commit bbf4d33

Please sign in to comment.