2 Stockfish, a UCI chess playing engine derived from Glaurung 2.1
3 Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
4 Copyright (C) 2008-2014 Marco Costalba, Joona Kiiski, Tord Romstad
6 Stockfish is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
11 Stockfish is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
26 /// The TTEntry is the 10 bytes transposition table entry, defined as below:
38 Move move() const { return (Move )move16; }
39 Value value() const { return (Value)value16; }
40 Value eval_value() const { return (Value)evalValue; }
41 Depth depth() const { return (Depth)(depth8) + DEPTH_NONE; }
42 Bound bound() const { return (Bound)(genBound8 & 0x3); }
45 friend class TranspositionTable;
47 void save(uint16_t k, Value v, Bound b, Depth d, Move m, uint8_t g, Value ev) {
52 evalValue = (int16_t)ev;
53 depth8 = (uint8_t)(d - DEPTH_NONE);
54 genBound8 = g | (uint8_t)b;
65 /// TTCluster is a 32 bytes cluster of TT entries consisting of:
67 /// 3 x TTEntry (3 x 10 bytes)
70 const unsigned TTClusterSize = 3;
74 TTEntry entry[TTClusterSize];
78 /// A TranspositionTable consists of a power of 2 number of clusters and each
79 /// cluster consists of TTClusterSize number of TTEntry. Each non-empty entry
80 /// contains information of exactly one position. The size of a cluster should
81 /// not be bigger than a cache line size. In case it is less, it should be padded
82 /// to guarantee always aligned accesses.
84 class TranspositionTable {
87 ~TranspositionTable() { free(mem); }
88 void new_search() { generation += 4; } // Lower 2 bits are used by Bound
90 const TTEntry* probe(const Key key) const;
91 TTEntry* first_entry(const Key key) const;
92 void resize(size_t mbSize);
94 void store(const Key key, Value v, Bound type, Depth d, Move m, Value statV);
100 uint8_t generation; // Size must be not bigger than TTEntry::genBound8
103 extern TranspositionTable TT;
106 /// TranspositionTable::first_entry() returns a pointer to the first entry of
107 /// a cluster given a position. The lowest order bits of the key are used to
108 /// get the index of the cluster inside the table.
110 inline TTEntry* TranspositionTable::first_entry(const Key key) const {
112 return &table[(size_t)key & (clusterCount - 1)].entry[0];
115 #endif // #ifndef TT_H_INCLUDED