Updated changelog
[fairymax.git] / changelog
1 /***************************************************************************/
2 /* micro-Max version 4.8 (~1950 characters) features:                      */
3 /* - recursive negamax search                                              */
4 /* - all-capture quiescence search with MVV/LVA priority                   */
5 /* - (internal) iterative deepening                                        */
6 /* - best-move-first 'sorting'                                             */
7 /* - a hash table storing score and best move                              */
8 /* - futility pruning                                                      */
9 /* - king safety through magnetic frozen king                              */
10 /* - null-move pruning                                                     */
11 /* - Late-move reductions                                                  */
12 /* - full FIDE rules (expt minor promotion) and move-legality checking     */
13 /* - keep hash + rep-draw detect                                           */
14 /* - end-game Pawn-push bonus, new piece values, gradual promotion         */
15 /***************************************************************************/
16 /* The Fairy-Max version reads the piece description from a file fmax.ini  */
17 /* The format supports many fairy pieces, including hoppers.               */
18 /* f) now supports 15 piece types, by requisitioning WHITE bit             */
19 /* g) supports larger board width.                                         */
20 /* h) castling bug ('in-check by non-captures') corrected                  */
21 /* i) rep-draw bug ('side-to-move') corrected                              */
22 /* k) allow user underpromotions, recognize & ignore 'variant' command     */
23 /* l) edit bug corrected (i & j file clear)                                */
24 /* m) piece values no longer quantized, game-stage counting bug corrected  */
25 /* n) edit-menu K-side castling bug corrected.                             */
26 /* o) retrieve the requested variant from the .ini file                    */
27 /* p) clear hash table on variant switch                                   */
28 /* q) reduced piece-material count for better Pawn push                    */
29 /* r) hash-table bug corrected (X still ORed with flags)                   */
30 /* s) Bug that prevented initialization center points corrected            */
31 /* t) castling bug after edit fixed                                        */
32 /* u) converted to protocol 2; ping implemented                            */
33 /* v) white e.p. rights hash bug fixed;                                    */
34 /* w) piece indicators programable, multi-path support                     */
35 /* x) e.p. changed to support Berolina Pawns                               */
36 /* y) capture value of 6-7th-rank Pawn reduced in Shatranj                 */
37 /* z) bug in promotion input corrected                                     */
38 /* A) stalemate-detection bug in printResult fixed                         */
39 /* B) Invalidate hash on game-level promotion (might be under-promotion!)  */
40 /* C) King move evaluation based on negative piece value in stead of nr    */
41 /* D) WB memory command added, undo fixed                                  */
42 /* E) 15th piece read in                                                   */
43 /* F) accepts ini fileargument                                             */
44 /* G) bug in calculation ASCII promotion character fixed                   */
45 /* H) unified normal and shatranj source                                   */
46 /* J) rewrite under-promotion code, fixes persistent bug there             */
47 /* K) o[] and oo[] made int to make fairymax work on big-endian machines   */
48 /* L) added Resign option feature (using new WB protocol)                  */
49 /* M) char -> signed char for better portability                           */
50 /* N) add PV printing and multi-PV support                                 */
51 /***************************************************************************/
52
53 4/6/2009 Unified source of ShaMax and Fairy-Max into single fmax.c file, and
54          created this ChangeLog from the until then self-documenting source.
55
56 6/2/2009 Promotion code rewitten to not refer to default piece characters.
57
58 9/3/2009 Fixed big-endian bug in reading inifile (char with int format),
59          and added some option features to make Fairy-Max useful as test
60          engine for GUIs that want to implement the WB protocol extensions.
61
62 9/16/2009 Made signedness of char in AI explicit
63
64 27/12/2009 Added PV updating through the triangular-array method. Also added
65            a multi-PV option to print lines within a certain sccore margin.
66
67 15/1/2010 Improved Makefile, updated docs
68