Rename posKey stored in the transposition table

[Edit: Slightly extended by me]

No functional change.
This commit is contained in:
jundery
2013-02-05 10:02:54 -07:00
committed by Marco Costalba
parent f69c185e02
commit 88c3670edf
2 changed files with 12 additions and 12 deletions

View File

@@ -100,8 +100,8 @@ public:
~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;