From: Stéphane Nicolet Date: Wed, 18 Apr 2018 17:53:39 +0000 (+0200) Subject: Simplify the shelter mask X-Git-Url: https://git.sesse.net/?p=stockfish;a=commitdiff_plain;h=73e8daa150173efd393a6b1987a4ca320664a397 Simplify the shelter mask The line 246 of pawns.cpp is not necessary, because we restrict the bitboards to file_of(f) in lines 253 and 256 anyway. No functional change. --- diff --git a/src/pawns.cpp b/src/pawns.cpp index 7fcdded6..7b3dd818 100644 --- a/src/pawns.cpp +++ b/src/pawns.cpp @@ -240,14 +240,12 @@ Value Entry::shelter_storm(const Position& pos, Square ksq) { enum { BlockedByKing, Unopposed, BlockedByPawn, Unblocked }; - File center = std::max(FILE_B, std::min(FILE_G, file_of(ksq))); - Bitboard b = pos.pieces(PAWN) - & (forward_ranks_bb(Us, ksq) | rank_bb(ksq)) - & (adjacent_files_bb(center) | file_bb(center)); + 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; + File center = std::max(FILE_B, std::min(FILE_G, file_of(ksq))); for (File f = File(center - 1); f <= File(center + 1); ++f) { b = ourPawns & file_bb(f);