]> git.sesse.net Git - stockfish/blobdiff - src/search.h
Retire EvalInfo* in SearchStack
[stockfish] / src / search.h
index 7b114bf2126ec4b20639bf8772219c8d2130888b..1dc4e1fa572565ca04e9c36f4201baf1be4d624f 100644 (file)
@@ -57,7 +57,6 @@ struct SearchStack {
   Move killers[KILLER_MAX];
   Depth reduction;
   Value eval;
-  EvalInfo* evalInfo;
 
   void init(int ply);
   void initKillers();
@@ -68,6 +67,7 @@ struct SearchStack {
 //// Prototypes
 ////
 
+extern void init_search();
 extern void init_threads();
 extern void stop_threads();
 extern bool think(const Position &pos, bool infinite, bool ponder, int side_to_move,