diff --git a/src/search.cpp b/src/search.cpp index cf934fc9..7043e49d 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -970,8 +970,7 @@ moves_loop: // When in check, search starts from here if (!pos.see_ge(move, Value(-29 * lmrDepth * lmrDepth))) continue; } - else if ( !extension // (~20 Elo) - && !pos.see_ge(move, -PawnValueEg * (depth / ONE_PLY))) + else if (!pos.see_ge(move, -PawnValueEg * (depth / ONE_PLY))) // (~20 Elo) continue; }