X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmovepick.h;h=f3839bf024d9e03a81db31cb93dadf8e475f7ca9;hp=363b1a1b32327dfb442999a11b8400915460e44e;hb=800410eef1c0811d046ee2332b3afda21284b876;hpb=f73bb438aa35d6eb6e7fade091e31e878a230465 diff --git a/src/movepick.h b/src/movepick.h index 363b1a1b..f3839bf0 100644 --- a/src/movepick.h +++ b/src/movepick.h @@ -17,7 +17,7 @@ along with this program. If not, see . */ -#if !defined MOVEPICK_H_INCLUDED +#ifndef MOVEPICK_H_INCLUDED #define MOVEPICK_H_INCLUDED #include // For std::max @@ -86,7 +86,8 @@ 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&, Move*, Search::Stack*, Value); + MovePicker(const Position&, Move, Depth, const HistoryStats&, Move*, Search::Stack*); + ~MovePicker(); template Move next_move(); @@ -103,8 +104,7 @@ private: ExtMove killers[4]; Square recaptureSquare; int captureThreshold, stage; - ExtMove *cur, *end, *endQuiets, *endBadCaptures; - ExtMove moves[MAX_MOVES]; + ExtMove *moves, *cur, *end, *endQuiets, *endBadCaptures; }; -#endif // !defined(MOVEPICK_H_INCLUDED) +#endif // #ifndef MOVEPICK_H_INCLUDED