X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Ftt.cpp;h=426546ba1b878ca2a2e9e0aeb25c4d1d2d869c38;hp=fb524e303fa3a932be953775c03a64e410c4b39a;hb=f178f0a2912082e2e9d07d9b0926031322d78f67;hpb=34b1d0538b3112ebdef57090d0fba5cbfc3e51fb diff --git a/src/tt.cpp b/src/tt.cpp index fb524e30..426546ba 100644 --- a/src/tt.cpp +++ b/src/tt.cpp @@ -108,31 +108,25 @@ void TranspositionTable::store(const Position &pos, Value v, Depth d, TTEntry *tte, *replace; tte = replace = first_entry(pos); - for (int i = 0; i < 4; i++) + for (int i = 0; i < 4; i++, tte++) { - if (!(tte+i)->key()) // still empty - { - *(tte+i) = TTEntry(pos.get_key(), v, type, d, m, generation); - writes++; - return; - } - if ((tte+i)->key() == pos.get_key()) // overwrite old + if (!tte->key() || tte->key() == pos.get_key()) // empty or overwrite old { if (m == MOVE_NONE) - m = (tte+i)->move(); + m = tte->move(); - *(tte+i) = TTEntry(pos.get_key(), v, type, d, m, generation); + *tte = TTEntry(pos.get_key(), v, type, d, m, generation); return; } - if (i == 0) // replace would be a no-op in this common case + else if (i == 0) // replace would be a no-op in this common case continue; int c1 = (replace->generation() == generation ? 2 : 0); - int c2 = ((tte+i)->generation() == generation ? -2 : 0); - int c3 = ((tte+i)->depth() < replace->depth() ? 1 : 0); + int c2 = (tte->generation() == generation ? -2 : 0); + int c3 = (tte->depth() < replace->depth() ? 1 : 0); if (c1 + c2 + c3 > 0) - replace = tte+i; + replace = tte; } *replace = TTEntry(pos.get_key(), v, type, d, m, generation); writes++;