X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;ds=sidebyside;f=src%2Fsearch.h;h=f93c53a50a0f4e276966b0da894d3c873574296e;hb=ed72a1e9ba37a9fa2674da8f46bb0597a1721c2d;hp=96c0a2d17a476ed42859067d2d29e44b99e7090c;hpb=9c9205860c5ab0e4f3180298e3f7082be259772c;p=stockfish diff --git a/src/search.h b/src/search.h index 96c0a2d1..f93c53a5 100644 --- a/src/search.h +++ b/src/search.h @@ -39,7 +39,6 @@ struct Stack { Move* pv; int ply; Move currentMove; - Move ttMove; Move excludedMove; Move killers[2]; Depth reduction; @@ -56,7 +55,7 @@ struct RootMove { explicit RootMove(Move m) : pv(1, m) {} - bool operator<(const RootMove& m) const { return score > m.score; } // Ascending sort + bool operator<(const RootMove& m) const { return m.score < score; } // Descending sort bool operator==(const Move& m) const { return pv[0] == m; } void insert_pv_in_tt(Position& pos); bool extract_ponder_from_tt(Position& pos); @@ -93,7 +92,7 @@ struct LimitsType { /// typically in an async fashion e.g. to stop the search by the GUI. struct SignalsType { - std::atomic_bool stop, stopOnPonderhit, firstRootMove, failedLowAtRoot; + std::atomic_bool stop, stopOnPonderhit; }; typedef std::unique_ptr> StateStackPtr;