X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmovepick.h;h=5896bbefab9e9d0c3876fc44942d41cc8c393d4e;hp=44be9636e45974a67b3d6cf47817b87295d6dad0;hb=b2edac7075ca238326378cb2c5ef09f7cdb2fd9e;hpb=ce8ac7997c9ddb34c28859a5b9afde0e2b6a4a9d diff --git a/src/movepick.h b/src/movepick.h index 44be9636..5896bbef 100644 --- a/src/movepick.h +++ b/src/movepick.h @@ -30,46 +30,40 @@ /// The Stats struct stores moves statistics. According to the template parameter -/// the class can store History, Gains and Countermoves. History records how often +/// the class can store History and Countermoves. History records how often /// different moves have been successful or unsuccessful during the current search -/// 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. +/// and is used for reduction and move ordering decisions. /// Countermoves store the move that refute a previous one. Entries are stored /// using only the moving piece and destination square, hence two moves with /// different origin but same destination and piece will be considered identical. -template +template struct Stats { static const Value Max = Value(250); const T* operator[](Piece pc) const { return table[pc]; } + T* operator[](Piece pc) { return table[pc]; } void clear() { std::memset(table, 0, sizeof(table)); } void update(Piece pc, Square to, Move m) { - if (m == table[pc][to].first) - return; - - table[pc][to].second = table[pc][to].first; - table[pc][to].first = m; + if (m != table[pc][to]) + table[pc][to] = m; } void update(Piece pc, Square to, Value v) { - if (Gain) - table[pc][to] = std::max(v, table[pc][to] - 1); - - else if (abs(table[pc][to] + v) < Max) - table[pc][to] += v; + if (abs(table[pc][to] + v) < Max) + table[pc][to] += v; } private: T table[PIECE_NB][SQUARE_NB]; }; -typedef Stats< true, Value> GainsStats; -typedef Stats HistoryStats; -typedef Stats > MovesStats; +typedef Stats HistoryStats; +typedef Stats MovesStats; +typedef Stats CounterMovesHistoryStats; /// MovePicker class is used to pick one pseudo legal move at a time from the @@ -84,9 +78,9 @@ 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*); + MovePicker(const Position&, Move, Depth, const HistoryStats&, const CounterMovesHistoryStats&, Square); + MovePicker(const Position&, Move, const HistoryStats&, const CounterMovesHistoryStats&, PieceType); + MovePicker(const Position&, Move, Depth, const HistoryStats&, const CounterMovesHistoryStats&, Move, Search::Stack*); template Move next_move(); @@ -98,12 +92,12 @@ private: const Position& pos; const HistoryStats& history; + const CounterMovesHistoryStats& counterMovesHistory; Search::Stack* ss; - Move* countermoves; - Move* followupmoves; + Move countermove; Depth depth; Move ttMove; - ExtMove killers[6]; + ExtMove killers[3]; Square recaptureSquare; Value captureThreshold; int stage;