X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fpawns.h;h=e41044091566050567d413cb2d5888dba6585538;hp=86708488cb276f6c13ce40d768d7bda7991d3485;hb=29076043e073c3d6e3b90b0809afc2a0af57e5e1;hpb=85a7456bd7e8a1a01cdbfa8f4b6fb563d15a37c6 diff --git a/src/pawns.h b/src/pawns.h index 86708488..e4104409 100644 --- a/src/pawns.h +++ b/src/pawns.h @@ -27,8 +27,10 @@ #include "bitboard.h" #include "position.h" +#include "tt.h" #include "value.h" + //// //// Types //// @@ -69,29 +71,21 @@ private: Score kingShelters[2]; }; -/// The PawnInfoTable class represents a pawn hash table. It is basically -/// just an array of PawnInfo objects and a few methods for accessing these -/// objects. The most important method is get_pawn_info, which looks up a -/// position in the table and returns a pointer to a PawnInfo object. -class PawnInfoTable { +/// The PawnInfoTable class represents a pawn hash table. The most important +/// method is get_pawn_info, which returns a pointer to a PawnInfo object. - enum SideType { KingSide, QueenSide }; +class PawnInfoTable : public SimpleHash { - PawnInfoTable(const PawnInfoTable&); - PawnInfoTable& operator=(const PawnInfoTable&); + enum SideType { KingSide, QueenSide }; public: - PawnInfoTable(); - ~PawnInfoTable(); PawnInfo* get_pawn_info(const Position& pos) const; void prefetch(Key key) const; private: template Score evaluate_pawns(const Position& pos, Bitboard ourPawns, Bitboard theirPawns, PawnInfo* pi) const; - - PawnInfo* entries; };