]> git.sesse.net Git - stockfish/blobdiff - src/tt.h
Rename Materials and Pawns hash stuff
[stockfish] / src / tt.h
index ae530c2a0244e2d69b56bf3115536e4c9ed31e97..1e344c3f06ef43f2b19af60f716d9a7c9990e0b8 100644 (file)
--- a/src/tt.h
+++ b/src/tt.h
@@ -137,16 +137,16 @@ inline void TranspositionTable::refresh(const TTEntry* tte) const {
 }
 
 
-/// A simple fixed size hash table used to store pawns and material
-/// configurations. It is basically just an array of Entry objects.
-/// Without cluster concept, overwrite policy nor resizing.
+/// A simple hash table used to store pawns and material configurations. It is
+/// basically just an array of Entry objects. Without cluster concept, overwrite
+/// policy nor resizing.
 
 template<class Entry, int HashSize>
-struct SimpleHash {
+struct HashTable {
 
-  typedef SimpleHash<Entry, HashSize> Base;
+  typedef HashTable<Entry, HashSize> Base;
 
-  SimpleHash() {
+  HashTable() {
 
     entries = new (std::nothrow) Entry[HashSize];
     if (!entries)
@@ -158,12 +158,12 @@ struct SimpleHash {
     memset(entries, 0, HashSize * sizeof(Entry));
   }
 
-  virtual ~SimpleHash() { delete [] entries; }
+  virtual ~HashTable() { delete [] entries; }
 
   Entry* probe(Key key) const { return entries + ((uint32_t)key & (HashSize - 1)); }
   void prefetch(Key key) const { ::prefetch((char*)probe(key)); }
 
-protected:
+private:
   Entry* entries;
 };