We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3647e8c commit b3ff1aeCopy full SHA for b3ff1ae
src/search.cpp
@@ -732,8 +732,8 @@ namespace {
732
}
733
734
// Step 7. Futility pruning: child node (skipped when in check)
735
- if ( !RootNode
736
- && !(PvNode && modifySearch)
+ if ( !RootNode
+ && !(PvNode && modifySearch)
737
&& depth < 7 * ONE_PLY
738
&& eval - futility_margin(depth) >= beta
739
&& eval < VALUE_KNOWN_WIN // Do not return unproven wins
@@ -912,8 +912,8 @@ namespace {
912
newDepth = depth - ONE_PLY + extension;
913
914
// Step 13. Pruning at shallow depth
915
916
917
&& !captureOrPromotion
918
&& !inCheck
919
&& !givesCheck
0 commit comments