X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmovepick.h;h=0a48c82de92ad991cfc6447dd9d603ad4bf6ca33;hp=60a44a6fac71ee3e24b5aab6bb782be7a4ecd287;hb=d9c7cad6302ddeff9f8a32a3fe66359c556a868e;hpb=99e547f4cb190e462d0c582b731a0fcf25ce1545 diff --git a/src/movepick.h b/src/movepick.h index 60a44a6f..0a48c82d 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,8 +86,9 @@ 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*); + const ExtMove* stage_moves() const; template Move next_move(); private: @@ -102,9 +103,9 @@ private: Move ttMove; ExtMove killers[4]; Square recaptureSquare; - int captureThreshold, phase; + int captureThreshold, stage; ExtMove *cur, *end, *endQuiets, *endBadCaptures; ExtMove moves[MAX_MOVES]; }; -#endif // !defined(MOVEPICK_H_INCLUDED) +#endif // #ifndef MOVEPICK_H_INCLUDED