We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efd4ca2 commit 38faedbCopy full SHA for 38faedb
src/tt.cpp
@@ -94,8 +94,7 @@ TTEntry* TranspositionTable::probe(const Key key, bool& found) const {
94
for (int i = 0; i < ClusterSize; ++i)
95
if (!tte[i].key16 || tte[i].key16 == key16)
96
{
97
- if ((tte[i].genBound8 & 0xFC) != generation8 && tte[i].key16)
98
- tte[i].genBound8 = uint8_t(generation8 | tte[i].bound()); // Refresh
+ tte[i].genBound8 = uint8_t(generation8 | tte[i].bound()); // Refresh
99
100
return found = (bool)tte[i].key16, &tte[i];
101
}
0 commit comments