X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsearch.h;h=5a0ad5df5790708e3a0e1d8d37f2926fcb3b668a;hp=409e9e754c68bda2ffc50c80123e417b04621780;hb=9369f4963d9376820cb5ca4bad66b86e67b0a010;hpb=4eb2d8ce095b284a1e55762548d9821a83a19b3b diff --git a/src/search.h b/src/search.h index 409e9e75..5a0ad5df 100644 --- a/src/search.h +++ b/src/search.h @@ -60,6 +60,7 @@ struct RootMove { bool operator<(const RootMove& m) const { return score > m.score; } // Ascending sort bool operator==(const Move& m) const { return pv[0] == m; } void insert_pv_in_tt(Position& pos); + Move extract_ponder_from_tt(Position& pos); Value score; Value previousScore;