Skip to content

Commit

Permalink
Elo measure. Step 14. Bench: 19792343
Browse files Browse the repository at this point in the history
  • Loading branch information
vondele committed Nov 8, 2019
1 parent ffac939 commit f2f81ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/search.cpp
Expand Up @@ -961,7 +961,7 @@ namespace {
// then that move is singular and should be extended. To verify this we do
// a reduced search on all the other moves but the ttMove and if the
// result is lower than ttValue minus a margin then we will extend the ttMove.
if ( depth >= 6 && false
if ( depth >= 6
&& move == ttMove
&& !rootNode
&& !excludedMove // Avoid recursive singular search
Expand Down Expand Up @@ -1012,7 +1012,7 @@ namespace {
newDepth = depth - 1 + extension;

// Step 14. Pruning at shallow depth (~170 Elo)
if ( !rootNode
if ( !rootNode && false
&& pos.non_pawn_material(us)
&& bestValue > VALUE_MATED_IN_MAX_PLY)
{
Expand Down

0 comments on commit f2f81ef

Please sign in to comment.