]> git.sesse.net Git - stockfish/blobdiff - src/tt.cpp
Rename shift_bb() to shift()
[stockfish] / src / tt.cpp
index 3c43e12ce58cb17e5bc376feda94b60ab468430e..f5b72ba8b3bef5c988f49ef903853adf2f8bf678 100644 (file)
@@ -100,11 +100,11 @@ TTEntry* TranspositionTable::probe(const Key key, bool& found) const {
 }
 
 
-/// Returns an approximation of the hashtable occupation during a search. The
-/// hash is x permill full, as per UCI protocol.
+/// TranspositionTable::hashfull() returns an approximation of the hashtable
+/// occupation during a search. The hash is x permill full, as per UCI protocol.
+
+int TranspositionTable::hashfull() const {
 
-int TranspositionTable::hashfull() const
-{
   int cnt = 0;
   for (int i = 0; i < 1000 / ClusterSize; i++)
   {