X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fdepth.h;h=85422f2b3b6fbde42820885a2fface48d2883bb2;hp=86af1dffcfbc213ff63935b27d31628eeec2e152;hb=4aeffc8c9a7ba870702974f62d1d3553ed227c00;hpb=02f96fcf5ec82ddf4b94f7992acdfb548a7a218c diff --git a/src/depth.h b/src/depth.h index 86af1dff..85422f2b 100644 --- a/src/depth.h +++ b/src/depth.h @@ -26,17 +26,10 @@ //// enum Depth { - DEPTH_ZERO = 0, - DEPTH_MAX = 200, // 100 * OnePly; - DEPTH_NONE = -254 // -127 * OnePly -}; - - -//// -//// Constants -//// -const Depth OnePly = Depth(2); + ONE_PLY = 2, + DEPTH_NONE = -127 * ONE_PLY +}; ////