X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;ds=sidebyside;f=src%2Ftt.h;fp=src%2Ftt.h;h=12fedd2d42ffa686997d4cbcf9835885b223f0c7;hb=a105978bbde04508389abad03bd121f817f91646;hp=628dfba28f7e0a0b3a694d7ebddf2b6b482f9e53;hpb=b1876222335df6581777baadc68fb5b17e5fe656;p=stockfish diff --git a/src/tt.h b/src/tt.h index 628dfba2..12fedd2d 100644 --- a/src/tt.h +++ b/src/tt.h @@ -37,7 +37,6 @@ namespace Stockfish { // move 16 bit // value 16 bit // eval value 16 bit - struct TTEntry { Move move() const { return Move(move16); } @@ -65,7 +64,6 @@ struct TTEntry { // contains information on exactly one position. The size of a Cluster should // divide the size of a cache line for best performance, as the cacheline is // prefetched when possible. - class TranspositionTable { static constexpr int ClusterSize = 3;