X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Ftt.h;h=3608b77c4421ba25e469fbc4d69d39299f92ce5c;hp=fefc8e2c29d928a819ac3437a6cea53192dbb2f3;hb=893a08a8c2eac3c2e7d2216b51811cc7378e2239;hpb=7df832fea63761775494d7e360102c62230005c7 diff --git a/src/tt.h b/src/tt.h index fefc8e2c..3608b77c 100644 --- a/src/tt.h +++ b/src/tt.h @@ -40,7 +40,7 @@ struct TTEntry { Move move() const { return (Move )move16; } Value value() const { return (Value)value16; } Value eval() const { return (Value)eval16; } - Depth depth() const { return (Depth)(depth8 * int(ONE_PLY)); } + Depth depth() const { return (Depth)(depth8 * int(ONE_PLY)) + DEPTH_NONE; } bool is_pv() const { return (bool)(genBound8 & 0x4); } Bound bound() const { return (Bound)(genBound8 & 0x3); } void save(Key k, Value v, bool pv, Bound b, Depth d, Move m, Value ev); @@ -53,7 +53,7 @@ private: int16_t value16; int16_t eval16; uint8_t genBound8; - int8_t depth8; + uint8_t depth8; };