X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fsearch.h;h=91f484a1a344a4d400ef792817f8d2f761df015d;hb=d9b920acfbc5c8fdc362111d00c962ad654595e6;hp=03c35f022d97cd2b5588c6947738ad2c663c2361;hpb=c1b60269a26b2ba1c8882b8f382f0e3e435c1962;p=stockfish diff --git a/src/search.h b/src/search.h index 03c35f02..91f484a1 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" //// @@ -53,7 +48,7 @@ const int KILLER_MAX = 2; /// current ply. struct SearchStack { - Move pv[PLY_MAX]; + Move pv[PLY_MAX_PLUS_2]; Move currentMove; Move mateKiller; Move threatMove; @@ -65,15 +60,6 @@ struct SearchStack { }; -//// -//// Global variables -//// - -extern TranspositionTable TT; -extern int ActiveThreads; -extern Lock SMPLock; - - //// //// Prototypes ////