X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmovepick.h;h=ef3be6c240f8d553b42c68756e48fa512b5bdf3d;hp=0ef2c89bb0d2b30ab0f23111106df0179eb061bd;hb=ced29248c93de7fc5a4e284807f8f052006e647c;hpb=99cd513264be1ad61848bbefd678be0feaa08061 diff --git a/src/movepick.h b/src/movepick.h index 0ef2c89b..ef3be6c2 100644 --- a/src/movepick.h +++ b/src/movepick.h @@ -39,13 +39,14 @@ struct HistoryStats { void clear() { std::memset(table, 0, sizeof(table)); } void update(Color c, Move m, Value v) { - if (abs(int(v)) >= 324) - return; - Square from = from_sq(m); Square to = to_sq(m); - table[c][from][to] -= table[c][from][to] * abs(int(v)) / 324; + const int denom = 324; + + assert(abs(int(v)) <= denom); // Needed for stability. + + table[c][from][to] -= table[c][from][to] * abs(int(v)) / denom; table[c][from][to] += int(v) * 32; } @@ -65,13 +66,15 @@ struct Stats { 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 fill(const Value& v) { std::fill(&table[0][0], &table[PIECE_NB-1][SQUARE_NB-1]+1, v); }; void update(Piece pc, Square to, Move m) { table[pc][to] = m; } void update(Piece pc, Square to, Value v) { - if (abs(int(v)) >= 324) - return; + const int denom = 936; + + assert(abs(int(v)) <= denom); // Needed for stability. - table[pc][to] -= table[pc][to] * abs(int(v)) / 936; + table[pc][to] -= table[pc][to] * abs(int(v)) / denom; table[pc][to] += int(v) * 32; } @@ -101,7 +104,7 @@ public: MovePicker(const Position&, Move, Depth, Square); MovePicker(const Position&, Move, Depth, Search::Stack*); - Move next_move(); + Move next_move(bool skipQuiets = false); private: template void score();