Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 25 additions & 8 deletions src/tt.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,31 @@ struct TTEntry {

void save(Key k, Value v, Bound b, Depth d, Move m, Value ev, uint8_t g) {

if (m || (k >> 48) != key16) // Preserve any existing move for the same position
move16 = (uint16_t)m;

key16 = (uint16_t)(k >> 48);
value16 = (int16_t)v;
eval16 = (int16_t)ev;
genBound8 = (uint8_t)(g | b);
depth8 = (int8_t)d;
if (key16 != (k >> 48))
{
key16 = (uint16_t)(k >> 48);
move16 = (uint16_t)m;
value16 = (int16_t)v;
eval16 = (int16_t)ev;
genBound8 = (uint8_t)(g | b);
depth8 = (int8_t)d;
}
else
{
if (m) // Preserve any existing move for the same position
move16 = (uint16_t)m;

// Don't overwrite more valuable values
if (d+2 > depth8 || g != (genBound8 & 0xFC) || b == BOUND_EXACT)
{
value16 = (int16_t)v;
genBound8 = (uint8_t)(g | b);
depth8 = (int8_t)d;
}

if (ev != VALUE_NONE)
eval16 = (int16_t)ev;
}
}

private:
Expand Down