X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsearch.h;h=e3ac5ab6a78edcb111be4df4103989aa98e5f263;hp=8638a9276f0abf1dec43465caf758dcdab6f8b5f;hb=12e79be91039796299187ba1b2f1559552642ea4;hpb=76f9cd4df1292ffa919e039edcfb8069f576e698 diff --git a/src/search.h b/src/search.h index 8638a927..e3ac5ab6 100644 --- a/src/search.h +++ b/src/search.h @@ -41,7 +41,7 @@ constexpr int CounterMovePruneThreshold = 0; struct Stack { Move* pv; - PieceToHistory* contHistory; + PieceToHistory* continuationHistory; int ply; Move currentMove; Move excludedMove; @@ -69,6 +69,8 @@ struct RootMove { Value score = -VALUE_INFINITE; Value previousScore = -VALUE_INFINITE; int selDepth = 0; + int tbRank; + Value tbScore; std::vector pv; };