X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmovepick.h;h=f8472c6e67f9ac2de7bc9055938749e720777a52;hp=f080935afb14b9752af52ecbeb933af224c9bbfe;hb=23c385ec36f9d5a9514ec5b0811ec99d08b45e90;hpb=84f3e867903f62480c33243dd0ecbffd342796fc diff --git a/src/movepick.h b/src/movepick.h index f080935a..f8472c6e 100644 --- a/src/movepick.h +++ b/src/movepick.h @@ -84,11 +84,11 @@ 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; +typedef Stats ButterflyHistory; -/// At higher depths LowPlyHistory records successful quiet moves near the root and quiet -/// moves which are/were in the PV (ttPv) -/// It is cleared with each new search and filled during iterative deepening +/// At higher depths LowPlyHistory records successful quiet moves near the root +/// and quiet moves which are/were in the PV (ttPv). It is cleared with each new +/// search and filled during iterative deepening. constexpr int MAX_LPH = 4; typedef Stats LowPlyHistory;