]> git.sesse.net Git - stockfish/blobdiff - src/search.h
Raise penalty for knight attacked by pawn
[stockfish] / src / search.h
index 409e9e754c68bda2ffc50c80123e417b04621780..5a0ad5df5790708e3a0e1d8d37f2926fcb3b668a 100644 (file)
@@ -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;