X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmovepick.h;h=44be9636e45974a67b3d6cf47817b87295d6dad0;hp=9482a89c491f7fa792771e88e52a9a5c3a0a3879;hb=f3189bdc9af1451449473bdd1977ed1ffa663c85;hpb=65f46794af41534e0dc744c6f7531a4c43eca857 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