X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fpawns.cpp;h=cee744134f4f779031f73bd65aa20547367ce545;hp=10f67236f61500bcddd8e237005a9e323eeae1ed;hb=14548312203bcd164f3bfb778c7e29abd89109dd;hpb=b258b4fee789680566bff973cd6f45dc5d24b365 diff --git a/src/pawns.cpp b/src/pawns.cpp index 10f67236..cee74413 100644 --- a/src/pawns.cpp +++ b/src/pawns.cpp @@ -131,7 +131,7 @@ namespace { stoppers = theirPawns & passed_pawn_mask(Us, s); lever = theirPawns & pawnAttacksBB[s]; leverPush = theirPawns & pawnAttacksBB[s + Up]; - doubled = ourPawns & (s + Up); + doubled = ourPawns & (s - Up); neighbours = ourPawns & adjacent_files_bb(f); phalanx = neighbours & rank_bb(s); supported = neighbours & rank_bb(s - Up); @@ -177,8 +177,8 @@ namespace { if (connected) score += Connected[opposed][!!phalanx][more_than_one(supported)][relative_rank(Us, s)]; - if (doubled) - score -= Doubled; + if (doubled && !supported) + score -= Doubled; if (lever) score += Lever[relative_rank(Us, s)];