]> git.sesse.net Git - stockfish/blobdiff - src/search.h
PV refutation penalty
[stockfish] / src / search.h
index 5e17b82928b60435fba05cff072d59fac72dc639..5ba95fe098a5fef94ae7b7418da376fd82d0f619 100644 (file)
@@ -47,6 +47,7 @@ struct Stack {
   Depth reduction;
   Value staticEval;
   bool skipEarlyPruning;
+  int moveCount;
 };
 
 /// RootMove struct is used for moves at the root of the tree. For each root move
@@ -106,6 +107,7 @@ extern StateStackPtr SetupStates;
 
 void init();
 void think();
+void reset();
 template<bool Root> uint64_t perft(Position& pos, Depth depth);
 
 } // namespace Search