X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsearch.h;h=37ea9feaefa76fa981d2a4052064b76fa50196fa;hp=bd21023747f53d2e480003933566c86fbd844bf8;hb=46fdb14b2f51386d14b3fd0ad49f511bb491bed6;hpb=0e1ad3ad33c65be8cfb2702b3df5500ef9d2f87f diff --git a/src/search.h b/src/search.h index bd210237..37ea9fea 100644 --- a/src/search.h +++ b/src/search.h @@ -47,6 +47,7 @@ struct Stack { Value staticEval; Value evalMargin; int skipNullMove; + int futilityMoveCount; }; @@ -78,7 +79,7 @@ struct RootMove { struct LimitsType { - LimitsType() { memset(this, 0, sizeof(LimitsType)); } + LimitsType() { std::memset(this, 0, sizeof(LimitsType)); } bool use_time_management() const { return !(mate | movetime | depth | nodes | infinite); } int time[COLOR_NB], inc[COLOR_NB], movestogo, depth, nodes, movetime, mate, infinite, ponder;