X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Ftt.h;h=ee10b3f0d9e28bbedd0e892b13cccfb5c8a58538;hb=d40a12f948590e280a4c0e874cb8a73b6b7929c2;hp=0b95ea635997d87f7b999917951f24d2be90ad21;hpb=6aef4429fd15ca4f8e285affe83dd0a553883607;p=stockfish diff --git a/src/tt.h b/src/tt.h index 0b95ea63..ee10b3f0 100644 --- a/src/tt.h +++ b/src/tt.h @@ -43,7 +43,7 @@ /// bit 64-79: value /// bit 80-95: depth /// bit 96-111: static value -/// bit 112-127: king danger value +/// bit 112-127: margin of static value /// /// the 32 bits of the data field are so defined /// @@ -62,8 +62,9 @@ public: value16 = int16_t(v); depth16 = int16_t(d); staticValue = int16_t(statV); - kingDanger = int16_t(kd); + staticValueMargin = int16_t(kd); } + void set_generation(int g) { data = move() | (type() << 21) | (g << 23); } uint32_t key() const { return key32; } Depth depth() const { return Depth(depth16); } @@ -72,7 +73,7 @@ public: ValueType type() const { return ValueType((data >> 21) & 3); } int generation() const { return data >> 23; } Value static_value() const { return Value(staticValue); } - Value king_danger() const { return Value(kingDanger); } + Value static_value_margin() const { return Value(staticValueMargin); } private: uint32_t key32; @@ -80,7 +81,7 @@ private: int16_t value16; int16_t depth16; int16_t staticValue; - int16_t kingDanger; + int16_t staticValueMargin; }; @@ -102,6 +103,9 @@ struct TTCluster { class TranspositionTable { + TranspositionTable(const TranspositionTable&); + TranspositionTable& operator=(const TranspositionTable&); + public: TranspositionTable(); ~TranspositionTable(); @@ -111,11 +115,12 @@ public: TTEntry* retrieve(const Key posKey) const; void new_search(); TTEntry* first_entry(const Key posKey) const; + void refresh(const TTEntry* tte) const; private: size_t size; TTCluster* entries; - uint8_t generation; + uint8_t generation; // To properly compare, size must be smaller then TT stored value }; extern TranspositionTable TT; @@ -130,4 +135,13 @@ inline TTEntry* TranspositionTable::first_entry(const Key posKey) const { return entries[uint32_t(posKey) & (size - 1)].data; } + +/// TranspositionTable::refresh updates the 'generation' value of the TTEntry +/// to avoid aging. Normally called after a TT hit, before to return. + +inline void TranspositionTable::refresh(const TTEntry* tte) const { + + const_cast(tte)->set_generation(generation); +} + #endif // !defined(TT_H_INCLUDED)