X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsearch.h;h=f93c53a50a0f4e276966b0da894d3c873574296e;hp=d755f1c2e873cf907d4c13d7af6812065f9c7714;hb=ed72a1e9ba37a9fa2674da8f46bb0597a1721c2d;hpb=79f393084af73655c869af126281bb2a7c2cc396;ds=sidebyside diff --git a/src/search.h b/src/search.h index d755f1c2..f93c53a5 100644 --- a/src/search.h +++ b/src/search.h @@ -39,7 +39,6 @@ struct Stack { Move* pv; int ply; Move currentMove; - Move ttMove; Move excludedMove; Move killers[2]; Depth reduction; @@ -93,7 +92,7 @@ struct LimitsType { /// typically in an async fashion e.g. to stop the search by the GUI. struct SignalsType { - std::atomic_bool stop, stopOnPonderhit, firstRootMove, failedLowAtRoot; + std::atomic_bool stop, stopOnPonderhit; }; typedef std::unique_ptr> StateStackPtr;