X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fpawns.cpp;h=dab280cce2daea987ddbf9da0f00541dd70f26f5;hp=cee744134f4f779031f73bd65aa20547367ce545;hb=0c1f119069bf915b85126159d4865c4bcc532239;hpb=14548312203bcd164f3bfb778c7e29abd89109dd diff --git a/src/pawns.cpp b/src/pawns.cpp index cee74413..dab280cc 100644 --- a/src/pawns.cpp +++ b/src/pawns.cpp @@ -32,10 +32,10 @@ namespace { #define S(mg, eg) make_score(mg, eg) // Isolated pawn penalty by opposed flag - const Score Isolated[2] = { S(45, 40), S(30, 27) }; + const Score Isolated[] = { S(45, 40), S(30, 27) }; // Backward pawn penalty by opposed flag - const Score Backward[2] = { S(56, 33), S(41, 19) }; + const Score Backward[] = { S(56, 33), S(41, 19) }; // Unsupported pawn penalty for pawns which are neither isolated or backward const Score Unsupported = S(17, 8); @@ -104,7 +104,6 @@ namespace { bool opposed, backward; Score score = SCORE_ZERO; const Square* pl = pos.squares(Us); - const Bitboard* pawnAttacksBB = StepAttacksBB[make_piece(Us, PAWN)]; Bitboard ourPawns = pos.pieces(Us , PAWN); Bitboard theirPawns = pos.pieces(Them, PAWN); @@ -129,8 +128,8 @@ namespace { // Flag the pawn opposed = theirPawns & forward_bb(Us, s); stoppers = theirPawns & passed_pawn_mask(Us, s); - lever = theirPawns & pawnAttacksBB[s]; - leverPush = theirPawns & pawnAttacksBB[s + Up]; + lever = theirPawns & PawnAttacks[Us][s]; + leverPush = theirPawns & PawnAttacks[Us][s + Up]; doubled = ourPawns & (s - Up); neighbours = ourPawns & adjacent_files_bb(f); phalanx = neighbours & rank_bb(s); @@ -164,6 +163,15 @@ namespace { && popcount(phalanx) >= popcount(leverPush)) e->passedPawns[Us] |= s; + else if ( stoppers == SquareBB[s + Up] + && relative_rank(Us, s) >= RANK_5) + { + b = shift(supported) & ~theirPawns; + while (b) + if (!more_than_one(theirPawns & PawnAttacks[Us][pop_lsb(&b)])) + e->passedPawns[Us] |= s; + } + // Score this pawn if (!neighbours) score -= Isolated[opposed]; @@ -178,7 +186,7 @@ namespace { score += Connected[opposed][!!phalanx][more_than_one(supported)][relative_rank(Us, s)]; if (doubled && !supported) - score -= Doubled; + score -= Doubled; if (lever) score += Lever[relative_rank(Us, s)];