X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsearch.h;h=b4fb26ae72b9bee3b1bd80f1bfd225e12e654518;hp=a3c87ca9955d45926293f7bf23131a5bce95d21a;hb=4b703b142946ae03f03ca75738d927fd44a69b39;hpb=c5ec94d0f1b128fc2c691c7231663a345409d5cc diff --git a/src/search.h b/src/search.h index a3c87ca9..b4fb26ae 100644 --- a/src/search.h +++ b/src/search.h @@ -38,7 +38,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 +47,7 @@ struct Stack { Value staticEval; Value evalMargin; int skipNullMove; + int futilityMoveCount; };