X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fsearch.h;h=b179c9c77006e030813eaa15c2883406601387a2;hb=f7fee4c6165922b589727e6564430673379e5f30;hp=a2e783b110895a6fb92fa71665c4f9edc0cc9820;hpb=1d368bbbdc50bbb4e10933c4986abc07a08010fd;p=stockfish diff --git a/src/search.h b/src/search.h index a2e783b1..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) {} @@ -63,8 +66,7 @@ struct SearchLimits { bool infinite, ponder; }; -extern void init_threads(); -extern void exit_threads(); +extern void init_search(); extern int64_t perft(Position& pos, Depth depth); extern bool think(Position& pos, const SearchLimits& limits, Move searchMoves[]);