X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fsearch.h;h=b620202d9178836f24619192409242b67166f564;hb=e533b620caf72b05969dd756355cbaeb6ae5f7a6;hp=806295a1100f196811c745632b26568ed0ea4445;hpb=c357c4ad6f7318234c4d745eaa6b0c4774e28741;p=stockfish diff --git a/src/search.h b/src/search.h index 806295a1..b620202d 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; }; @@ -74,6 +71,9 @@ struct RootMove { Value score = -VALUE_INFINITE; Value previousScore = -VALUE_INFINITE; Value averageScore = -VALUE_INFINITE; + Value uciScore = -VALUE_INFINITE; + bool scoreLowerbound = false; + bool scoreUpperbound = false; int selDepth = 0; int tbRank = 0; Value tbScore;