X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fsearch.h;h=0323d47e3127b45edd42935041a9cced3e5a1fe8;hb=72c7595f8ac72c7831ee319b8b0bc46404c5fc27;hp=0bdabdac6507cf89859eb2d3aec83e4b2264cf09;hpb=539051b1e0fb099c0d0da69d20d6a4c2b98a2cb6;p=stockfish diff --git a/src/search.h b/src/search.h index 0bdabdac..0323d47e 100644 --- a/src/search.h +++ b/src/search.h @@ -55,11 +55,13 @@ const int KILLER_MAX = 2; struct SearchStack { Move pv[PLY_MAX]; Move currentMove; - Value currentMoveCaptureValue; Move mateKiller; Move threatMove; Move killers[KILLER_MAX]; Depth reduction; + + void init(int ply); + void initKillers(); };