]> git.sesse.net Git - stockfish/blobdiff - src/tt.h
Move insert_pv() and extract_pv() out of TT class
[stockfish] / src / tt.h
index 6833c67db0b36a2395a859a5033f79b64943e30c..1c32ddc1872211e0150987d079942d8fef5bf3be 100644 (file)
--- a/src/tt.h
+++ b/src/tt.h
@@ -111,18 +111,9 @@ public:
   void store(const Key posKey, Value v, ValueType type, Depth d, Move m, Value statV, Value kingD);
   TTEntry* retrieve(const Key posKey) const;
   void new_search();
-  void insert_pv(const Position& pos, Move pv[]);
-  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 'overwrites' is at least one cache line away
-  // from read only variables.
-  unsigned char pad_before[64 - sizeof(unsigned)];
-  unsigned overwrites; // heavy SMP read/write access here
-  unsigned char pad_after[64];
-
   size_t size;
   TTCluster* entries;
   uint8_t generation;