X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fmovepick.h;h=55fcc6442dc871923400ac2fbd804d1453e0f907;hb=f436bf77ad2eb42228747d9aa58eeb7403e23d49;hp=9a3c279bd2e0a8e96464a37463bd0d4f76d70d84;hpb=4ac7d726ec5ba38ba593bca2ab5cb7589785a957;p=stockfish diff --git a/src/movepick.h b/src/movepick.h index 9a3c279b..55fcc644 100644 --- a/src/movepick.h +++ b/src/movepick.h @@ -86,7 +86,8 @@ enum StatsType { NoCaptures, Captures }; /// unsuccessful during the current search, and is used for reduction and move /// ordering decisions. It uses 2 tables (one for each color) indexed by /// the move's from and to squares, see www.chessprogramming.org/Butterfly_Boards -typedef Stats ButterflyHistory; +/// (~11 elo) +typedef Stats ButterflyHistory; /// CounterMoveHistory stores counter moves indexed by [piece][to] of the previous /// move, see www.chessprogramming.org/Countermove_Heuristic @@ -101,6 +102,7 @@ typedef Stats PieceToHistory; /// ContinuationHistory is the combined history of a given pair of moves, usually /// the current one given a previous one. The nested history table is based on /// PieceToHistory instead of ButterflyBoards. +/// (~63 elo) typedef Stats ContinuationHistory; @@ -129,6 +131,8 @@ public: MovePicker(const Position&, Move, Value, Depth, const CapturePieceToHistory*); Move next_move(bool skipQuiets = false); + Bitboard threatenedPieces; + private: template Move select(Pred); template void score();