X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmovepick.h;h=44be9636e45974a67b3d6cf47817b87295d6dad0;hp=a7b25a924b47bd04383c9b98fb96e78c272f3d71;hb=e53774bc49dd0aaa1c129ee98c09e1a56ef974fb;hpb=42b48b08e81b55e385e55b3074b7c59d81809a45 diff --git a/src/movepick.h b/src/movepick.h index a7b25a92..44be9636 100644 --- a/src/movepick.h +++ b/src/movepick.h @@ -80,10 +80,10 @@ typedef Stats > MovesStats; /// to get a cut-off first. class MovePicker { - - MovePicker& operator=(const MovePicker&); // Silence a warning under MSVC - public: + MovePicker(const MovePicker&) = delete; + MovePicker& operator=(const MovePicker&) = delete; + MovePicker(const Position&, Move, Depth, const HistoryStats&, Square); MovePicker(const Position&, Move, const HistoryStats&, PieceType); MovePicker(const Position&, Move, Depth, const HistoryStats&, Move*, Move*, Search::Stack*); @@ -93,6 +93,8 @@ public: private: template void score(); void generate_next_stage(); + ExtMove* begin() { return moves; } + ExtMove* end() { return endMoves; } const Position& pos; const HistoryStats& history; @@ -105,8 +107,8 @@ private: Square recaptureSquare; Value captureThreshold; int stage; - ExtMove *cur, *end, *endQuiets, *endBadCaptures; - ExtMove moves[MAX_MOVES]; + ExtMove *endQuiets, *endBadCaptures; + ExtMove moves[MAX_MOVES], *cur = moves, *endMoves = moves; }; #endif // #ifndef MOVEPICK_H_INCLUDED