X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fmovepick.h;h=979709ae682885baa073488b1e335c701abfc8ea;hb=675f6a038ba98b6b906a4767f009cf6fe91b0c52;hp=9a3c279bd2e0a8e96464a37463bd0d4f76d70d84;hpb=4ac7d726ec5ba38ba593bca2ab5cb7589785a957;p=stockfish diff --git a/src/movepick.h b/src/movepick.h index 9a3c279b..979709ae 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;