X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Ftt.h;h=d087cc38f77e2cad94feb67940ccc26c37f06189;hp=3a5ba5da8ee218c76b4e14a097c76c158cdd0a84;hb=ca7d4e9ac7b5ca74be8aa807fbdf139b2a0860ab;hpb=328bdd0947ea7903ee1061c8eb60bc3121a4eb19 diff --git a/src/tt.h b/src/tt.h index 3a5ba5da..d087cc38 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_OFFSET; } + Depth depth() const { return (Depth)depth8 + DEPTH_OFFSET; } 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);