X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fpawns.h;h=0098a963db224a478d74eed4164d24acb5ffebad;hp=307da51c53fb42a4d66ede8c9af0080b1ad03c27;hb=48f38f3092626f0dfef3728568ad5d85ca6c2f92;hpb=46409a7852ae22abf9c32cbcfe3b35f164ae8ec5 diff --git a/src/pawns.h b/src/pawns.h index 307da51c..0098a963 100644 --- a/src/pawns.h +++ b/src/pawns.h @@ -17,7 +17,7 @@ along with this program. If not, see . */ -#if !defined(PAWNS_H_INCLUDED) +#ifndef PAWNS_H_INCLUDED #define PAWNS_H_INCLUDED #include "misc.h" @@ -37,7 +37,8 @@ struct Entry { Score pawns_value() const { return value; } Bitboard pawn_attacks(Color c) const { return pawnAttacks[c]; } Bitboard passed_pawns(Color c) const { return passedPawns[c]; } - int pawns_on_same_color_squares(Color c, Square s) const { return pawnsOnSquares[c][!!(BlackSquares & s)]; } + Bitboard candidate_pawns(Color c) const { return candidatePawns[c]; } + int pawns_on_same_color_squares(Color c, Square s) const { return pawnsOnSquares[c][!!(DarkSquares & s)]; } int semiopen(Color c, File f) const { return semiopenFiles[c] & (1 << int(f)); } int semiopen_on_side(Color c, File f, bool left) const { @@ -59,6 +60,7 @@ struct Entry { Key key; Bitboard passedPawns[COLOR_NB]; + Bitboard candidatePawns[COLOR_NB]; Bitboard pawnAttacks[COLOR_NB]; Square kingSquares[COLOR_NB]; int minKPdistance[COLOR_NB]; @@ -75,4 +77,4 @@ Entry* probe(const Position& pos, Table& entries); } -#endif // !defined(PAWNS_H_INCLUDED) +#endif // #ifndef PAWNS_H_INCLUDED