X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsearch.h;h=1fa7d064930af4b818bfff4c7ca105bc81739b1b;hp=a3c87ca9955d45926293f7bf23131a5bce95d21a;hb=2ef53ee368683d5aa62b028377b94efe961f18ac;hpb=c5ec94d0f1b128fc2c691c7231663a345409d5cc diff --git a/src/search.h b/src/search.h index a3c87ca9..1fa7d064 100644 --- a/src/search.h +++ b/src/search.h @@ -25,6 +25,7 @@ #include #include +#include "evaluate.h" #include "misc.h" #include "position.h" #include "types.h" @@ -38,7 +39,7 @@ namespace Search { /// has its own array of Stack objects, indexed by the current ply. struct Stack { - SplitPoint* sp; + SplitPoint* splitPoint; int ply; Move currentMove; Move excludedMove; @@ -47,6 +48,8 @@ struct Stack { Value staticEval; Value evalMargin; int skipNullMove; + int futilityMoveCount; + Eval::Info ei; };