X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fsearch.h;h=96c0a2d17a476ed42859067d2d29e44b99e7090c;hb=ce84ab6e9dc64e0c137c2785a36e4a345a8a5a95;hp=6248cd0193310bf4c577f1bfd9d248230c4c326d;hpb=80d7556af785f57a4f90d121c57c9c2f85a2963e;p=stockfish diff --git a/src/search.h b/src/search.h index 6248cd01..96c0a2d1 100644 --- a/src/search.h +++ b/src/search.h @@ -93,7 +93,7 @@ struct LimitsType { /// typically in an async fashion e.g. to stop the search by the GUI. struct SignalsType { - std::atomic stop, stopOnPonderhit, firstRootMove, failedLowAtRoot; + std::atomic_bool stop, stopOnPonderhit, firstRootMove, failedLowAtRoot; }; typedef std::unique_ptr> StateStackPtr; @@ -103,8 +103,8 @@ extern LimitsType Limits; extern StateStackPtr SetupStates; void init(); -void reset(); -template uint64_t perft(Position& pos, Depth depth); +void clear(); +template uint64_t perft(Position& pos, Depth depth); } // namespace Search