X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsearch.h;h=1b17254a84b70362230c493db08f3a9ab315f106;hp=1940c1b52cdf5b8b0c936092ea6ec784def576ae;hb=2e8998eac94c7955633e69c04430899f4bdb7907;hpb=1e7aaed8bc4247a742d515811f0e484ff40309b8 diff --git a/src/search.h b/src/search.h index 1940c1b5..1b17254a 100644 --- a/src/search.h +++ b/src/search.h @@ -17,30 +17,12 @@ along with this program. If not, see . */ - #if !defined(SEARCH_H_INCLUDED) #define SEARCH_H_INCLUDED -//// -//// Includes -//// - -#include "depth.h" #include "move.h" -#include "value.h" - - -//// -//// Constants -//// +#include "types.h" -const int PLY_MAX = 100; -const int PLY_MAX_PLUS_2 = PLY_MAX + 2; - - -//// -//// Types -//// /// The SearchStack struct keeps track of the information we need to remember /// from nodes shallower and deeper in the tree during the search. Each @@ -62,10 +44,6 @@ struct SearchStack { SplitPoint* sp; }; - -//// -//// Prototypes -//// class Position; extern void init_search();