X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fpawns.cpp;h=b8f82cff4a6718eae4813201191009330e9c30c9;hp=95d5fb4cfeb5af4da52552430224b3622470d3cc;hb=a6ae2d3a31e93000e65bdfd8f0b6d9a3e6b8ce1b;hpb=69ec09bd4b5bdf61f3f49f12d88224e1d656020c diff --git a/src/pawns.cpp b/src/pawns.cpp index 95d5fb4c..b8f82cff 100644 --- a/src/pawns.cpp +++ b/src/pawns.cpp @@ -105,7 +105,7 @@ namespace { Score score = SCORE_ZERO; const Square* pl = pos.squares(Us); - Bitboard ourPawns = pos.pieces(Us , PAWN); + Bitboard ourPawns = pos.pieces( Us, PAWN); Bitboard theirPawns = pos.pieces(Them, PAWN); e->passedPawns[Us] = e->pawnAttacksSpan[Us] = 0; @@ -126,7 +126,7 @@ namespace { e->pawnAttacksSpan[Us] |= pawn_attack_span(Us, s); // Flag the pawn - opposed = theirPawns & forward_bb(Us, s); + opposed = theirPawns & forward_file_bb(Us, s); stoppers = theirPawns & passed_pawn_mask(Us, s); lever = theirPawns & PawnAttacks[Us][s]; leverPush = theirPawns & PawnAttacks[Us][s + Up]; @@ -158,17 +158,19 @@ namespace { // which could become passed after one or two pawn pushes when are // not attacked more times than defended. if ( !(stoppers ^ lever ^ leverPush) - && !(ourPawns & forward_bb(Us, s)) + && !(ourPawns & forward_file_bb(Us, s)) && popcount(supported) >= popcount(lever) && 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)])) + 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) @@ -184,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)]; @@ -248,7 +250,7 @@ Value Entry::shelter_storm(const Position& pos, Square ksq) { enum { BlockedByKing, Unopposed, BlockedByPawn, Unblocked }; - Bitboard b = pos.pieces(PAWN) & (in_front_bb(Us, rank_of(ksq)) | rank_bb(ksq)); + Bitboard b = pos.pieces(PAWN) & (forward_ranks_bb(Us, ksq) | rank_bb(ksq)); Bitboard ourPawns = b & pos.pieces(Us); Bitboard theirPawns = b & pos.pieces(Them); Value safety = MaxSafetyBonus; @@ -259,7 +261,7 @@ Value Entry::shelter_storm(const Position& pos, Square ksq) { b = ourPawns & file_bb(f); Rank rkUs = b ? relative_rank(Us, backmost_sq(Us, b)) : RANK_1; - b = theirPawns & file_bb(f); + b = theirPawns & file_bb(f); Rank rkThem = b ? relative_rank(Us, frontmost_sq(Them, b)) : RANK_1; int d = std::min(f, FILE_H - f);