X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsearch.h;h=03fa5c640373f73affd8a41818ade11606da5845;hp=e4592e27cca2197512b60af3a11d10c3f4da894e;hb=70b1b79264b2a160f72dd2aa92c2f80045e4cd83;hpb=6b909b2343190f2989d21c8f69f40e9f09c530c0 diff --git a/src/search.h b/src/search.h index e4592e27..03fa5c64 100644 --- a/src/search.h +++ b/src/search.h @@ -44,7 +44,7 @@ struct Stack { Move excludedMove; Move killers[2]; Depth reduction; - Value eval; + Value staticEval; Value evalMargin; int skipNullMove; }; @@ -82,7 +82,7 @@ struct LimitsType { LimitsType() { memset(this, 0, sizeof(LimitsType)); } bool use_time_management() const { return !(movetime | depth | nodes | infinite); } - int time[2], inc[2], movestogo, depth, nodes, movetime, infinite, ponder; + int time[COLOR_NB], inc[COLOR_NB], movestogo, depth, nodes, movetime, infinite, ponder; };