X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fposition.h;h=c4dbfcf6bef163aac51ab3b6a40bce43decb261d;hp=5539b7a6faa660da7897c7caf43d0b5d662102bf;hb=cf9bf4e58fba6f478f3263412d224a4499f3fad6;hpb=71e852ea815be8dd718685cb9e15ccdb8b756211 diff --git a/src/position.h b/src/position.h index 5539b7a6..c4dbfcf6 100644 --- a/src/position.h +++ b/src/position.h @@ -146,9 +146,9 @@ public: }; // Constructors - Position() {} - Position(const Position& pos); - Position(const std::string& fen); + Position(); + explicit Position(const Position& pos); + explicit Position(const std::string& fen); // Text input/output void from_fen(const std::string& fen); @@ -156,7 +156,7 @@ public: void print(Move m = MOVE_NONE) const; // Copying - void copy(const Position& pos); + void fast_copy(const Position& pos); void flipped_copy(const Position& pos); // The piece on a given square @@ -234,7 +234,7 @@ public: bool square_is_weak(Square s, Color c) const; // Doing and undoing moves - void saveState(); + void detach(); void do_move(Move m, StateInfo& st); void do_move(Move m, StateInfo& st, const CheckInfo& ci, bool moveIsCheck); void undo_move(Move m); @@ -249,6 +249,7 @@ public: // Accessing hash keys Key get_key() const; + Key get_exclusion_key() const; Key get_pawn_key() const; Key get_material_key() const; @@ -337,6 +338,7 @@ private: static Key zobMaterial[2][8][16]; static Key zobSideToMove; static Score PieceSquareTable[16][64]; + static Key zobExclusion; }; @@ -501,6 +503,10 @@ inline Key Position::get_key() const { return st->key; } +inline Key Position::get_exclusion_key() const { + return st->key ^ zobExclusion; +} + inline Key Position::get_pawn_key() const { return st->pawnKey; }