Sunsetter

From Chessprogramming wiki
Jump to: navigation, search

Home * Engines * Sunsetter

François Boucher - The Setting of the Sun [1]

Sunsetter,
an open source chess engine under the GNU General Public License v2.0 [2] that plays Bughouse and Crazyhouse - a separate version also orthodox chess. Sunsetter is written by Georg von Zimmermann in C++, recent versions co-authored by Ben Dean-Kawamura [3], available at GitHub, compliant to the Chess Engine Communication Protocol [4].

Description

[5]

Move Generation

Sunsetter is a bitboard engine which uses rotated bitboards to calculate sliding piece attacks [6]. The board structure further keeps an 8x8 board, and Crazyhouse specific, a bitboard of promoted pawns, and piece-lists of each player's reserve (in hand), also keeping some incremental updated attack tables. Pseudo-legal moves are generated in four stages.

Search

Sunsetter performs NegaScout with transposition table within its iterative deepening framework using a zero aspiration window to decide whether the forced re-search of the first move half-opens the window in plus or minus infinity direction [7]. Null move pruning, extended futility pruning, razoring and fractional extensions are used to shape the tree, which has considerable larger branching factor in Crazyhouse. Sunsetter features book learning based on the final result, where root moves receive a bonus if persistent from advantageous positions in previously won games.

Evaluation

Sunsetter's evaluation in centipawn resolution considers material, material in hand, board control, development, and king safety [8].

Forum Posts

2000 ...

2010 ...

External Links

References