X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fsearch.h;h=f264bcae84027972c52511f6e02fe5c67eb0c889;hb=e90341f9c9cd24e75aba2485b2ab1e445f4a5b70;hp=806295a1100f196811c745632b26568ed0ea4445;hpb=ad926d34c0105d523bfa5cb92cbcf9f337d54c08;p=stockfish diff --git a/src/search.h b/src/search.h index 806295a1..f264bcae 100644 --- a/src/search.h +++ b/src/search.h @@ -31,9 +31,6 @@ class Position; namespace Search { -/// Threshold used for countermoves based pruning -constexpr int CounterMovePruneThreshold = 0; - /// Stack struct keeps track of the information we need to remember from nodes /// shallower and deeper in the tree during the search. Each search thread has @@ -47,13 +44,13 @@ struct Stack { Move excludedMove; Move killers[2]; Value staticEval; - Depth depth; int statScore; int moveCount; bool inCheck; bool ttPv; bool ttHit; int doubleExtensions; + int cutoffCnt; };