X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsearch.h;h=2300c76271cc7c85a0d9d7e8bda732b9ba353e20;hp=a3c87ca9955d45926293f7bf23131a5bce95d21a;hb=8df17204f4469977604695e4ae5d63ae47a575ff;hpb=c5ec94d0f1b128fc2c691c7231663a345409d5cc diff --git a/src/search.h b/src/search.h index a3c87ca9..2300c762 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 futMc; };