X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsearch.h;h=5e17b82928b60435fba05cff072d59fac72dc639;hp=c7a452086b9e7c9364d2ff4491b5dbfdcf8433de;hb=ef4d89c9bd4fff869f9b57d7f5fcdacdfd46f91c;hpb=0af24a14455bbcde181fff7632722ce55419991e diff --git a/src/search.h b/src/search.h index c7a45208..5e17b829 100644 --- a/src/search.h +++ b/src/search.h @@ -76,7 +76,7 @@ typedef std::vector RootMoveVector; struct LimitsType { LimitsType() { // Init explicitly due to broken value-initialization of non POD in MSVC - nodes = time[WHITE] = time[BLACK] = inc[WHITE] = inc[BLACK] = movestogo = + nodes = time[WHITE] = time[BLACK] = inc[WHITE] = inc[BLACK] = npmsec = movestogo = depth = movetime = mate = infinite = ponder = 0; } @@ -85,7 +85,7 @@ struct LimitsType { } std::vector searchmoves; - int time[COLOR_NB], inc[COLOR_NB], movestogo, depth, movetime, mate, infinite, ponder; + int time[COLOR_NB], inc[COLOR_NB], npmsec, movestogo, depth, movetime, mate, infinite, ponder; int64_t nodes; }; @@ -102,7 +102,6 @@ extern volatile SignalsType Signals; extern LimitsType Limits; extern RootMoveVector RootMoves; extern Position RootPos; -extern Time::point SearchTime; extern StateStackPtr SetupStates; void init();