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-2009 Marco Costalba
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/>.
21 #if !defined(TT_H_INCLUDED)
37 /// The TTEntry class is the class of transposition table entries
39 /// A TTEntry needs 128 bits to be stored
44 /// bit 112-127: depth
46 /// the 32 bits of the data field are so defined
49 /// bit 17-19: not used
50 /// bit 20-22: value type
51 /// bit 23-31: generation
57 TTEntry(Key k, Value v, ValueType t, Depth d, Move m, int generation)
58 : key_ (k), data((m & 0x1FFFF) | (t << 20) | (generation << 23)),
59 value_(int16_t(v)), depth_(int16_t(d)) {}
61 Key key() const { return key_; }
62 Depth depth() const { return Depth(depth_); }
63 Move move() const { return Move(data & 0x1FFFF); }
64 Value value() const { return Value(value_); }
65 ValueType type() const { return ValueType((data >> 20) & 7); }
66 int generation() const { return (data >> 23); }
75 /// The transposition table class. This is basically just a huge array
76 /// containing TTEntry objects, and a few methods for writing new entries
77 /// and reading new ones.
79 class TranspositionTable {
83 ~TranspositionTable();
84 void set_size(unsigned mbSize);
86 void store(const Key posKey, Value v, ValueType type, Depth d, Move m);
87 TTEntry* retrieve(const Key posKey) const;
89 void insert_pv(const Position& pos, Move pv[]);
93 inline TTEntry* first_entry(const Key posKey) const;
95 unsigned size, writes;
100 #endif // !defined(TT_H_INCLUDED)