X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmovepick.h;h=57fe1c0ec304a76fd2542e97876c811eac92b6d2;hp=8997c93872c46766bf137f1d4cc73cd46194f1a9;hb=6960f41e03b0d5fdbc74e60eae27f4adb8091058;hpb=f7c013edd08a0e2d26491eb087c145e103e0f708 diff --git a/src/movepick.h b/src/movepick.h index 8997c938..57fe1c0e 100644 --- a/src/movepick.h +++ b/src/movepick.h @@ -86,8 +86,7 @@ class MovePicker { public: MovePicker(const Position&, Move, Depth, const HistoryStats&, Square); MovePicker(const Position&, Move, const HistoryStats&, PieceType); - MovePicker(const Position&, Move, Depth, const HistoryStats&, - const CountermovesStats&, Search::Stack*, Value); + MovePicker(const Position&, Move, Depth, const HistoryStats&, Move*, Search::Stack*, Value); template Move next_move(); @@ -98,6 +97,7 @@ private: const Position& pos; const HistoryStats& history; Search::Stack* ss; + Move* countermoves; Depth depth; Move ttMove; MoveStack killers[4];