X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Ftt.cpp;h=14217e8db2cafd0fc925143fc04795090136619a;hb=bb7713c8e92c9373f0294a4317101cccda0e17e5;hp=d18b512cd429f8a161c583de962e1a68ef4964b3;hpb=c13b53a5144163a81d214fb72733b3400b2da002;p=stockfish diff --git a/src/tt.cpp b/src/tt.cpp index d18b512c..14217e8d 100644 --- a/src/tt.cpp +++ b/src/tt.cpp @@ -117,11 +117,11 @@ void TranspositionTable::store(const Key posKey, Value v, ValueType t, Depth d, } -/// TranspositionTable::retrieve() looks up the current position in the +/// TranspositionTable::probe() looks up the current position in the /// transposition table. Returns a pointer to the TTEntry or NULL if /// position is not found. -TTEntry* TranspositionTable::retrieve(const Key posKey) const { +TTEntry* TranspositionTable::probe(const Key posKey) const { uint32_t posKey32 = posKey >> 32; TTEntry* tte = first_entry(posKey);