X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsearch.h;h=b179c9c77006e030813eaa15c2883406601387a2;hp=06e384fb35dbfa0094bb7fc5c0932e3f49a7fee8;hb=09d01ee9dc16f20962d5f5ffcb61ade56d4fa579;hpb=05cfb00f26ca075ac972e320aaeabefe20599aea diff --git a/src/search.h b/src/search.h index 06e384fb..b179c9c7 100644 --- a/src/search.h +++ b/src/search.h @@ -20,6 +20,8 @@ #if !defined(SEARCH_H_INCLUDED) #define SEARCH_H_INCLUDED +#include + #include "move.h" #include "types.h" @@ -52,7 +54,8 @@ struct SearchStack { struct SearchLimits { - SearchLimits() {} + SearchLimits() { memset(this, 0, sizeof(SearchLimits)); } + SearchLimits(int t, int i, int mtg, int mt, int md, int mn, bool inf, bool pon) : time(t), increment(i), movesToGo(mtg), maxTime(mt), maxDepth(md), maxNodes(mn), infinite(inf), ponder(pon) {}