X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsearch.h;h=3d348de94b2b860d5d461b5b287c05f2496e1b6a;hp=a31b189c010f2c00fe3c3fe5b3252a52f5a8c96a;hb=f6f1d2422303923927c0c088dee1d6df22dc4b98;hpb=3c07603dac03f0da20194097cf4eb1a396fea60d diff --git a/src/search.h b/src/search.h index a31b189c..3d348de9 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;