mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-21 09:37:16 +08:00
Don't save eval score in TT
This patch completes the removal of eval info in TT table. No functional change.
This commit is contained in:
10
src/tt.h
10
src/tt.h
@@ -44,7 +44,7 @@
|
||||
class TTEntry {
|
||||
|
||||
public:
|
||||
void save(uint32_t k, Value v, Bound b, Depth d, Move m, int g, Value statV, Value statM) {
|
||||
void save(uint32_t k, Value v, Bound b, Depth d, Move m, int g) {
|
||||
|
||||
key32 = (uint32_t)k;
|
||||
move16 = (uint16_t)m;
|
||||
@@ -52,8 +52,6 @@ public:
|
||||
generation8 = (uint8_t)g;
|
||||
value16 = (int16_t)v;
|
||||
depth16 = (int16_t)d;
|
||||
staticValue = (int16_t)statV;
|
||||
staticMargin = (int16_t)statM;
|
||||
}
|
||||
void set_generation(int g) { generation8 = (uint8_t)g; }
|
||||
|
||||
@@ -63,14 +61,12 @@ public:
|
||||
Value value() const { return (Value)value16; }
|
||||
Bound type() const { return (Bound)bound; }
|
||||
int generation() const { return (int)generation8; }
|
||||
Value static_value() const { return (Value)staticValue; }
|
||||
Value static_value_margin() const { return (Value)staticMargin; }
|
||||
|
||||
private:
|
||||
uint32_t key32;
|
||||
uint16_t move16;
|
||||
uint8_t bound, generation8;
|
||||
int16_t value16, depth16, staticValue, staticMargin;
|
||||
int16_t value16, depth16;
|
||||
};
|
||||
|
||||
|
||||
@@ -100,7 +96,7 @@ public:
|
||||
~TranspositionTable();
|
||||
void set_size(size_t mbSize);
|
||||
void clear();
|
||||
void store(const Key posKey, Value v, Bound type, Depth d, Move m, Value statV, Value kingD);
|
||||
void store(const Key posKey, Value v, Bound type, Depth d, Move m);
|
||||
TTEntry* probe(const Key posKey) const;
|
||||
void new_search();
|
||||
TTEntry* first_entry(const Key posKey) const;
|
||||
|
||||
Reference in New Issue
Block a user