X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmovepick.h;h=d49ea3b6a2a995ba0d2a9947265a5f766386293e;hp=8997c93872c46766bf137f1d4cc73cd46194f1a9;hb=c5d478b92303314da0ea072640ee0214ca160199;hpb=f7c013edd08a0e2d26491eb087c145e103e0f708 diff --git a/src/movepick.h b/src/movepick.h index 8997c938..d49ea3b6 100644 --- a/src/movepick.h +++ b/src/movepick.h @@ -17,11 +17,11 @@ along with this program. If not, see . */ -#if !defined MOVEPICK_H_INCLUDED +#ifndef MOVEPICK_H_INCLUDED #define MOVEPICK_H_INCLUDED #include // For std::max -#include // For memset +#include // For std::memset #include "movegen.h" #include "position.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 { @@ -43,7 +43,7 @@ struct Stats { static const Value Max = Value(2000); const T* operator[](Piece p) const { return table[p]; } - void clear() { memset(table, 0, sizeof(table)); } + void clear() { std::memset(table, 0, sizeof(table)); } void update(Piece p, Square to, Move m) { @@ -86,8 +86,7 @@ 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&, - const CountermovesStats&, Search::Stack*, Value); + MovePicker(const Position&, Move, Depth, const HistoryStats&, Move*, Search::Stack*); template Move next_move(); @@ -98,13 +97,14 @@ private: const Position& pos; const HistoryStats& history; Search::Stack* ss; + Move* countermoves; Depth depth; Move ttMove; - MoveStack killers[4]; + ExtMove killers[4]; Square recaptureSquare; - int captureThreshold, phase; - MoveStack *cur, *end, *endQuiets, *endBadCaptures; - MoveStack moves[MAX_MOVES]; + int captureThreshold, stage; + ExtMove *cur, *end, *endQuiets, *endBadCaptures; + ExtMove moves[MAX_MOVES]; }; -#endif // !defined(MOVEPICK_H_INCLUDED) +#endif // #ifndef MOVEPICK_H_INCLUDED