Skip to content

Commit

Permalink
Update search.cpp
Browse files Browse the repository at this point in the history
bench: 1294546
  • Loading branch information
TarasVuk authored Oct 14, 2024
1 parent 9766db8 commit c694630
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 @@ -850,7 +850,7 @@ Value Search::Worker::search(
// For cutNodes, if depth is high enough, decrease depth by 2 if there is no ttMove,
// or by 1 if there is a ttMove with an upper bound.
if (cutNode && depth >= 7 && (!ttData.move || ttData.bound == BOUND_UPPER))
depth -= 1 + !ttData.move;
depth -= 2;

// Step 11. ProbCut (~10 Elo)
// If we have a good enough capture (or queen promotion) and a reduced search
Expand Down

0 comments on commit c694630

Please sign in to comment.