X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmovepick.h;h=44be9636e45974a67b3d6cf47817b87295d6dad0;hp=9482a89c491f7fa792771e88e52a9a5c3a0a3879;hb=e53774bc49dd0aaa1c129ee98c09e1a56ef974fb;hpb=f6f1d2422303923927c0c088dee1d6df22dc4b98 diff --git a/src/movepick.h b/src/movepick.h index 9482a89c..44be9636 100644 --- a/src/movepick.h +++ b/src/movepick.h @@ -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