X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsearch.cpp;h=c516f3c444786dd2b3a41d49b5250deb17a7d75f;hp=cb7b30b8f6f102a832f79c1ae835046f8aa83128;hb=0901e12102cf61559e6bfbbda0a040c72048dc8c;hpb=58c9fbacc787cc3b654244c071169057e6895c91 diff --git a/src/search.cpp b/src/search.cpp index cb7b30b8..c516f3c4 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -1343,6 +1343,7 @@ 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; }