X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsearch.h;h=00e2cd4ac38b0349f7063c3a7de48518df1f16d8;hp=61a33242124f3f68515d4d87a9907af9a5c49a64;hb=14f059072af34bc21b71ae7fc550f03b4a075b3b;hpb=b6ab610e2f3d9148e2a75984800cebc0757b7f01 diff --git a/src/search.h b/src/search.h index 61a33242..00e2cd4a 100644 --- a/src/search.h +++ b/src/search.h @@ -36,7 +36,6 @@ const int PLY_MAX = 100; const int PLY_MAX_PLUS_2 = 102; -const int KILLER_MAX = 2; //// @@ -52,16 +51,12 @@ struct EvalInfo; struct SearchStack { Move currentMove; Move mateKiller; - Move threatMove; Move excludedMove; Move bestMove; - Move killers[KILLER_MAX]; + Move killers[2]; Depth reduction; Value eval; bool skipNullMove; - - void init(); - void initKillers(); };