X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmovepick.h;h=d49ea3b6a2a995ba0d2a9947265a5f766386293e;hp=f3839bf024d9e03a81db31cb93dadf8e475f7ca9;hb=8ca80cb0f1bb50f982f89efd147c45f9b91358a5;hpb=800410eef1c0811d046ee2332b3afda21284b876 diff --git a/src/movepick.h b/src/movepick.h index f3839bf0..d49ea3b6 100644 --- a/src/movepick.h +++ b/src/movepick.h @@ -35,7 +35,7 @@ /// and is used for reduction and move ordering decisions. Gains records the move's /// best evaluation gain from one ply to the next and is used for pruning decisions. /// Countermoves store the move that refute a previous one. Entries are stored -/// according only to moving piece and destination square, hence two moves with +/// using only the moving piece and destination square, hence two moves with /// different origin but same destination and piece will be considered identical. template struct Stats { @@ -87,7 +87,6 @@ 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*); - ~MovePicker(); template Move next_move(); @@ -104,7 +103,8 @@ private: ExtMove killers[4]; Square recaptureSquare; int captureThreshold, stage; - ExtMove *moves, *cur, *end, *endQuiets, *endBadCaptures; + ExtMove *cur, *end, *endQuiets, *endBadCaptures; + ExtMove moves[MAX_MOVES]; }; #endif // #ifndef MOVEPICK_H_INCLUDED