X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fsearch.h;h=d755f1c2e873cf907d4c13d7af6812065f9c7714;hb=79f393084af73655c869af126281bb2a7c2cc396;hp=96c0a2d17a476ed42859067d2d29e44b99e7090c;hpb=9c9205860c5ab0e4f3180298e3f7082be259772c;p=stockfish diff --git a/src/search.h b/src/search.h index 96c0a2d1..d755f1c2 100644 --- a/src/search.h +++ b/src/search.h @@ -56,7 +56,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);