From: Fabian Fichter Date: Wed, 22 Apr 2020 07:03:44 +0000 (+0200) Subject: Fix butterfly history array size X-Git-Url: http://winboard.nl/cgi-bin?a=commitdiff_plain;h=3f704b0d19a6b348a682e8bd060be7f8d0f261f3;p=fairystockfish.git Fix butterfly history array size Closes #110. --- diff --git a/src/movepick.h b/src/movepick.h index 334a62d..b4b71fd 100644 --- a/src/movepick.h +++ b/src/movepick.h @@ -86,7 +86,7 @@ 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; /// CounterMoveHistory stores counter moves indexed by [piece][to] of the previous /// move, see www.chessprogramming.org/Countermove_Heuristic