X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fdepth.h;h=6b266adb430409a7bd565bef77ac89d3836abb8f;hp=f77dd0d3d926ac20dda6f5c48560c528db64ed63;hb=61c03b9d22de0c1ccf0c60af4e223775d4b3f7cc;hpb=a5ae7fe26030bdd73a95fde3ebe841abfe84ec5e diff --git a/src/depth.h b/src/depth.h index f77dd0d3..6b266adb 100644 --- a/src/depth.h +++ b/src/depth.h @@ -31,7 +31,10 @@ enum Depth { ONE_PLY = 2, - DEPTH_ZERO = 0, + DEPTH_ZERO = 0 * ONE_PLY, + DEPTH_QS_CHECKS = -1 * ONE_PLY, + DEPTH_QS_NO_CHECKS = -2 * ONE_PLY, + DEPTH_NONE = -127 * ONE_PLY };