X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Ftt.cpp;h=14217e8db2cafd0fc925143fc04795090136619a;hp=d18b512cd429f8a161c583de962e1a68ef4964b3;hb=1d0159075e916c738760b788d605b71b3736cb7c;hpb=321320b0814d5994640977cf96e015eba8ce22d5 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);