]> git.sesse.net Git - stockfish/blobdiff - src/search.cpp
Merge branch 'simplify_eval' of https://github.com/glinscott/Stockfish
[stockfish] / src / search.cpp
index e7fbbcf3dcb3566fc794870fd5b8e05b9fcf5d21..35d1eb5b4a390e0a567793a18e6ba51080295a86 100644 (file)
@@ -1343,7 +1343,6 @@ split_point_start: // At split points actual search starts from here
     Bitboard b = (enemies ^ ksq) & newAtt & ~oldAtt;
     while (b)
     {
-        // Note that here we generate illegal "double move"!
         if (futilityBase + PieceValue[EG][pos.piece_on(pop_lsb(&b))] >= beta)
             return true;
     }