X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Ftt.h;h=46f5b11dd3940864ace0da1c377f95aa8411735d;hp=bcc761acf325da0999838b2f209cb4faab92bb33;hb=d0fdc202315a211124f65965f88a3a0ed5b91953;hpb=47ee6d9fa4091aa05f6fedb62a2bb652b0422f08 diff --git a/src/tt.h b/src/tt.h index bcc761ac..46f5b11d 100644 --- a/src/tt.h +++ b/src/tt.h @@ -110,15 +110,15 @@ public: TTEntry* retrieve(const Key posKey) const; void new_search(); void insert_pv(const Position& pos, Move pv[]); - void extract_pv(const Position& pos, Move pv[], const int PLY_MAX); + void extract_pv(const Position& pos, Move bestMove, Move pv[], const int PLY_MAX); int full() const; TTEntry* first_entry(const Key posKey) const; private: - // Be sure 'writes' is at least one cache line away + // Be sure 'overwrites' is at least one cache line away // from read only variables. unsigned char pad_before[64 - sizeof(unsigned)]; - unsigned writes; // heavy SMP read/write access here + unsigned overwrites; // heavy SMP read/write access here unsigned char pad_after[64]; size_t size;