X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fpawns.h;h=5939253b5da7b0c9adc38e4eb89ec39ec16daeb0;hp=684697acb1738846226910bafb5a3f79813ece39;hb=6b7efa0cd14b73416c9030462f79a02bbfc7ad2c;hpb=4c58db0dab8e80cf8e57beef6ed9d3a8e2c56795 diff --git a/src/pawns.h b/src/pawns.h index 684697ac..5939253b 100644 --- a/src/pawns.h +++ b/src/pawns.h @@ -1,7 +1,7 @@ /* Stockfish, a UCI chess playing engine derived from Glaurung 2.1 Copyright (C) 2004-2008 Tord Romstad (Glaurung author) - Copyright (C) 2008-2009 Marco Costalba + Copyright (C) 2008-2010 Marco Costalba, Joona Kiiski, Tord Romstad Stockfish is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -26,6 +26,7 @@ //// #include "bitboard.h" +#include "scale.h" #include "value.h" //// @@ -52,6 +53,7 @@ public: Value queenside_storm_value(Color c) const; Bitboard pawn_attacks(Color c) const; Bitboard passed_pawns() const; + ScaleFactor scale_factor(Color c) const; int file_is_half_open(Color c, File f) const; int has_open_file_to_left(Color c, File f) const; int has_open_file_to_right(Color c, File f) const; @@ -64,11 +66,10 @@ private: Key key; Bitboard passedPawns; Bitboard pawnAttacks[2]; + Square kingSquares[2]; Score value; int16_t ksStormValue[2], qsStormValue[2]; - uint8_t halfOpenFiles[2]; - Square kingSquares[2]; - uint8_t kingShelters[2]; + uint8_t halfOpenFiles[2], kingShelters[2], factor[2]; }; /// The PawnInfoTable class represents a pawn hash table. It is basically @@ -116,6 +117,10 @@ inline Value PawnInfo::queenside_storm_value(Color c) const { return Value(qsStormValue[c]); } +inline ScaleFactor PawnInfo::scale_factor(Color c) const { + return ScaleFactor(factor[c]); +} + inline int PawnInfo::file_is_half_open(Color c, File f) const { return (halfOpenFiles[c] & (1 << int(f))); }