X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsearch.h;h=d2dc6eba58257f30364baf364fd27b5e35fd546f;hp=6e91159dd30284ec144f8fbfc369e0935e082e11;hb=2dfec0f6147f62fb772cde912a9436d2d5054703;hpb=c51e12200a70ba91433181819ac5321f55c49f70 diff --git a/src/search.h b/src/search.h index 6e91159d..d2dc6eba 100644 --- a/src/search.h +++ b/src/search.h @@ -50,17 +50,17 @@ const int KILLER_MAX = 2; struct EvalInfo; struct SearchStack { - Move pv[PLY_MAX_PLUS_2]; Move currentMove; Move mateKiller; Move threatMove; Move excludedMove; + Move bestMove; Move killers[KILLER_MAX]; Depth reduction; Value eval; bool skipNullMove; - void init(int ply); + void init(); void initKillers(); };