X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Ftt.h;fp=src%2Ftt.h;h=8b70f79787619ca4c1b6326f55cfa456a2dcf04f;hp=142afd90e56ca63e1b79691f27b6c51a5a19f966;hb=ddcbacd04d1c860e808202ce8c1206c8acdca627;hpb=ec2002c594cce22dfbbdc7b6b8df2828a00d18cf diff --git a/src/tt.h b/src/tt.h index 142afd90..8b70f797 100644 --- a/src/tt.h +++ b/src/tt.h @@ -41,7 +41,7 @@ struct TTEntry { Value value() const { return (Value)value16; } Value eval() const { return (Value)eval16; } Depth depth() const { return (Depth)depth8 + DEPTH_OFFSET; } - bool is_pv() const { return (bool)(genBound8 & 0x4); } + 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);