X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fpawns.cpp;h=5048d4f19782b0d9e7c5a4baa6dfc2700aaa1ed1;hp=761d770e6772534ac15b859e210d901b47430918;hb=e846a9306d6108fb24cb216689867777ac2b0c4f;hpb=af1ddfd83b59a98f7f23f75419f0492fc7e2e85f diff --git a/src/pawns.cpp b/src/pawns.cpp index 761d770e..5048d4f1 100644 --- a/src/pawns.cpp +++ b/src/pawns.cpp @@ -42,10 +42,10 @@ namespace { // Strength of pawn shelter for our king by [distance from edge][rank]. // RANK_1 = 0 is used for files where we have no pawn, or pawn is behind our king. constexpr Value ShelterStrength[int(FILE_NB) / 2][RANK_NB] = { - { V( -3), V( 81), V( 93), V( 58), V( 39), V( 18), V( 25) }, - { V(-40), V( 61), V( 35), V(-49), V(-29), V(-11), V( -63) }, - { V( -7), V( 75), V( 23), V( -2), V( 32), V( 3), V( -45) }, - { V(-36), V(-13), V(-29), V(-52), V(-48), V(-67), V(-166) } + { V( -6), V( 81), V( 93), V( 58), V( 39), V( 18), V( 25) }, + { V(-43), V( 61), V( 35), V(-49), V(-29), V(-11), V( -63) }, + { V(-10), V( 75), V( 23), V( -2), V( 32), V( 3), V( -45) }, + { V(-39), V(-13), V(-29), V(-52), V(-48), V(-67), V(-166) } }; // Danger of enemy pawns moving toward our king by [distance from edge][rank]. @@ -118,7 +118,6 @@ 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_file_bb(Us, s)) && popcount(supported) >= popcount(lever) - 1 && popcount(phalanx) >= popcount(leverPush)) e->passedPawns[Us] |= s; @@ -212,10 +211,8 @@ Value Entry::evaluate_shelter(const Position& pos, Square ksq) { Bitboard ourPawns = b & pos.pieces(Us); Bitboard theirPawns = b & pos.pieces(Them); - Value safety = (ourPawns & file_bb(ksq)) ? Value(5) : Value(-5); - - if (shift(theirPawns) & (FileABB | FileHBB) & BlockRanks & ksq) - safety += Value(374); + Value safety = (shift(theirPawns) & (FileABB | FileHBB) & BlockRanks & ksq) ? + Value(374) : Value(5); File center = std::max(FILE_B, std::min(FILE_G, file_of(ksq))); for (File f = File(center - 1); f <= File(center + 1); ++f) @@ -248,7 +245,7 @@ Score Entry::do_king_safety(const Position& pos, Square ksq) { Bitboard pawns = pos.pieces(Us, PAWN); if (pawns) - while (!(DistanceRingBB[ksq][minKingPawnDistance++] & pawns)) {} + while (!(DistanceRingBB[ksq][++minKingPawnDistance] & pawns)) {} Value bonus = evaluate_shelter(pos, ksq);