X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fsearch.h;h=600d7a75198500dfd4582f48e76c239ebb5b2a50;hb=1a414cd9cb274d9572c60fe4067671cd993ffb36;hp=b7475577475246fa6892e309bde68afe6bd19097;hpb=22715259a04497743afe7e33f5cf1e3b13bb097e;p=stockfish diff --git a/src/search.h b/src/search.h index b7475577..600d7a75 100644 --- a/src/search.h +++ b/src/search.h @@ -80,9 +80,9 @@ struct RootMove { struct LimitsType { LimitsType() { memset(this, 0, sizeof(LimitsType)); } - bool use_time_management() const { return !(movetime | depth | nodes | infinite); } + bool use_time_management() const { return !(mate | movetime | depth | nodes | infinite); } - int time[COLOR_NB], inc[COLOR_NB], movestogo, depth, nodes, movetime, infinite, ponder; + int time[COLOR_NB], inc[COLOR_NB], movestogo, depth, nodes, movetime, mate, infinite, ponder; };