X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Ftt.h;h=10f04fb64dc9b09c53d64f8869c4b297beda38e2;hp=fb50ddfcf03b5d75237b9de4e5847234cd69232c;hb=13a73f67c018e58b2fd46f886c45ef2b75188c8e;hpb=ecd07e51d0f03ccd3e41e5634518b299989254dd diff --git a/src/tt.h b/src/tt.h index fb50ddfc..10f04fb6 100644 --- a/src/tt.h +++ b/src/tt.h @@ -66,9 +66,9 @@ private: /// A TranspositionTable consists of a power of 2 number of clusters and each /// cluster consists of ClusterSize number of TTEntry. Each non-empty entry -/// contains information of exactly one position. Size of a cluster shall not be -/// bigger than a cache line size. In case it is less, it should be padded to -/// guarantee always aligned accesses. +/// contains information of exactly one position. The size of a cluster should +/// not be bigger than a cache line size. In case it is less, it should be padded +/// to guarantee always aligned accesses. class TranspositionTable { @@ -106,7 +106,7 @@ inline TTEntry* TranspositionTable::first_entry(const Key key) const { /// TranspositionTable::refresh() updates the 'generation' value of the TTEntry -/// to avoid aging. Normally called after a TT hit. +/// to avoid aging. It is normally called after a TT hit. inline void TranspositionTable::refresh(const TTEntry* tte) const {