X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsearch.h;h=d2dc6eba58257f30364baf364fd27b5e35fd546f;hp=3def04eb058f8bdd346cbeaf47281c9c26e3ec26;hb=4d170725ab0ea2d219ff402495a1c541e7f75d6c;hpb=9fc602bae74b8e09bd45ace3b42a8ce84d56b23c diff --git a/src/search.h b/src/search.h index 3def04eb..d2dc6eba 100644 --- a/src/search.h +++ b/src/search.h @@ -50,15 +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(); };