]> git.sesse.net Git - stockfish/blobdiff - src/depth.h
Rename OnePly in ONE_PLY
[stockfish] / src / depth.h
index 92ce6e22a0e6001ad26f1c86fca0f81b2feaccbb..85422f2b3b6fbde42820885a2fface48d2883bb2 100644 (file)
 ////
 
 enum Depth {
-  DEPTH_ZERO = 0,
-  DEPTH_MAX = 200  // 100 * OnePly;
-};
-
-
-////
-//// Constants
-////
 
-const Depth OnePly = Depth(2);
+  ONE_PLY = 2,
+  DEPTH_NONE = -127 * ONE_PLY
+};
 
 
 ////