X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsearch.h;h=c957c34bf6259b1107ddd860209454ffffed9351;hp=a4cba6bf700ed7e716b8a8aaf2fdd1c723290b42;hb=10e64e05094e75d89baa4495fa867a8a64195bb7;hpb=103b368ab7f5fd696e0c6925917344d15a3c2d9c diff --git a/src/search.h b/src/search.h index a4cba6bf..c957c34b 100644 --- a/src/search.h +++ b/src/search.h @@ -39,7 +39,6 @@ struct Stack { int ply; Move currentMove; Move excludedMove; - Move bestMove; Move killers[2]; Depth reduction; Value eval; @@ -78,9 +77,9 @@ struct RootMove { struct LimitsType { LimitsType() { memset(this, 0, sizeof(LimitsType)); } - bool use_time_management() const { return !(maxTime | maxDepth | maxNodes | infinite); } + bool use_time_management() const { return !(movetime | depth | nodes | infinite); } - int time, increment, movesToGo, maxTime, maxDepth, maxNodes, infinite, ponder; + int times[2], incs[2], movestogo, depth, nodes, movetime, infinite, ponder; };