X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Ftt.h;h=705bac9161edb5c882b9c8224042b42a041ad0b1;hp=3edd5e8a1fdfda660eedc08ea89c57261eeb364b;hb=88c3670edf26d094678eeef3a2ed1eeffaf344d4;hpb=3cf6471738dc704ddf553d5f8d2dc9875c2ccbe7 diff --git a/src/tt.h b/src/tt.h index 3edd5e8a..705bac91 100644 --- a/src/tt.h +++ b/src/tt.h @@ -97,11 +97,11 @@ class TranspositionTable { public: TranspositionTable(); - ~TranspositionTable(); + ~TranspositionTable(); void set_size(size_t mbSize); void clear(); - void store(const Key posKey, Value v, Bound type, Depth d, Move m, Value statV, Value kingD); - TTEntry* probe(const Key posKey) const; + void store(const Key key, Value v, Bound type, Depth d, Move m, Value statV, Value kingD); + TTEntry* probe(const Key key) const; void new_search(); TTEntry* first_entry(const Key posKey) const; void refresh(const TTEntry* tte) const;