]> git.sesse.net Git - stockfish/blobdiff - src/tt.cpp
Small cleanups
[stockfish] / src / tt.cpp
index d0a5d4e0aa96ab948129a0706f4262de34886e5c..345909036762c0c0db7ac05ff5369d03e73640dc 100644 (file)
@@ -30,7 +30,7 @@
 
 TranspositionTable TT; // Our global transposition table
 
-/// TTEntry::save populates the TTEntry with a new node's data, possibly
+/// TTEntry::save() populates the TTEntry with a new node's data, possibly
 /// overwriting an old position. Update is not atomic and can be racy.
 
 void TTEntry::save(Key k, Value v, bool pv, Bound b, Depth d, Move m, Value ev) {
@@ -107,6 +107,7 @@ void TranspositionTable::clear() {
       th.join();
 }
 
+
 /// TranspositionTable::probe() looks up the current position in the transposition
 /// table. It returns true and a pointer to the TTEntry if the position is found.
 /// Otherwise, it returns false and a pointer to an empty or least valuable TTEntry