Skip to content

Commit

Permalink
Update movepick.h
Browse files Browse the repository at this point in the history
adding a comment
  • Loading branch information
Vizvezdenec authored Oct 3, 2024
1 parent 818f4b2 commit 62e48aa
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/movepick.h
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,8 @@ enum StatsType {
// see https://www.chessprogramming.org/Butterfly_Boards (~11 elo)
using ButterflyHistory = Stats<int16_t, 7183, COLOR_NB, int(SQUARE_NB) * int(SQUARE_NB)>;

// LowPlyHistory is adressed by play and move's from and to squares, used
// to improve move ordering near the root
using LowPlyHistory = Stats<int16_t, 7183, 4, int(SQUARE_NB) * int(SQUARE_NB)>;

// CapturePieceToHistory is addressed by a move's [piece][to][captured piece type]
Expand Down

0 comments on commit 62e48aa

Please sign in to comment.