X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsearch.h;h=069bbdd26e1954d9a872e0f5ddbc5e8978bb9d76;hp=da9e7ff9bee47fea95a76208d9ecd8544703b294;hb=cb506d3b1657c03738f823a98faed3c6b5216c40;hpb=5c81602d14539f8259a715477315e28b5de7cb54 diff --git a/src/search.h b/src/search.h index da9e7ff9..069bbdd2 100644 --- a/src/search.h +++ b/src/search.h @@ -26,12 +26,7 @@ //// #include "depth.h" -#include "history.h" -#include "lock.h" -#include "movegen.h" -#include "position.h" -#include "tt.h" -#include "value.h" +#include "move.h" //// @@ -65,19 +60,6 @@ struct SearchStack { }; -//// -//// Global variables -//// - -extern SearchStack EmptySearchStack; -extern TranspositionTable TT; -extern int ActiveThreads; -extern Lock SMPLock; - -// Perhaps better to make H local, and pass as parameter to MovePicker? -extern History H; - - //// //// Prototypes ////