]> git.sesse.net Git - stockfish/blobdiff - src/movepick.h
Introduce movecount pruning for qsearch()
[stockfish] / src / movepick.h
index 97ea5bec75f2c434585bf57ce47746aba9a6d60d..4c0ad55172d15101466b53babba99c2b9ea90f08 100644 (file)
@@ -93,7 +93,7 @@ constexpr int MAX_LPH = 4;
 typedef Stats<int16_t, 10692, MAX_LPH, int(SQUARE_NB) * int(SQUARE_NB)> LowPlyHistory;
 
 /// CounterMoveHistory stores counter moves indexed by [piece][to] of the previous
-/// move, see www.chessprogramming.org/Countermove_Heuristic 
+/// move, see www.chessprogramming.org/Countermove_Heuristic
 typedef Stats<Move, NOT_USED, PIECE_NB, SQUARE_NB> CounterMoveHistory;
 
 /// CapturePieceToHistory is addressed by a move's [piece][to][captured piece type]