]> git.sesse.net Git - stockfish/blobdiff - src/search.cpp
Simplify evaluation
[stockfish] / src / search.cpp
index bb1836e0474d3afe7f7c321ab7b967d2331c8f12..a66fe40e540bd2166ec4a2eb42784b3473a59405 100644 (file)
@@ -1342,7 +1342,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;
     }