X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsearch.h;h=0323d47e3127b45edd42935041a9cced3e5a1fe8;hp=0bdabdac6507cf89859eb2d3aec83e4b2264cf09;hb=11491e71eedf75763f0adf3136344fe3a244a06e;hpb=539051b1e0fb099c0d0da69d20d6a4c2b98a2cb6 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(); };