]> git.sesse.net Git - stockfish/blobdiff - src/search.h
Fix __cpuid() compile error with gcc
[stockfish] / src / search.h
index 7b114bf2126ec4b20639bf8772219c8d2130888b..c081d527e02f61a992ff2b8261fd34db1167f1ef 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,8 +67,9 @@ struct SearchStack {
 //// Prototypes
 ////
 
+extern void init_search();
 extern void init_threads();
-extern void stop_threads();
+extern void exit_threads();
 extern bool think(const Position &pos, bool infinite, bool ponder, int side_to_move,
                   int time[], int increment[], int movesToGo, int maxDepth,
                   int maxNodes, int maxTime, Move searchMoves[]);