This is a temporary, read-only recovery of the chessprogrammingwiki while a longer-term plan is worked out. Editing is not possible right now, but will be again soon.
Chess Programming Wiki All pages Other namespaces

Cinnamon

Home * Engines * Cinnamon

Cinnamon 1Cinnamon 1


  1. Cinnamon: sticks (ceylon cinnamon from Sri Lanka), powder, and flowers. Created from 31 images stacked with CombineZP, by Simon A. Eugster, CC BY-SA 3.0, Wikimedia Commons, Cinnamomum from Wikipedia↩︎

Cinnamon,
an UCI compliant open source chess engine by Giuseppe Cannella, written in C++11, published under GPL Version 3. Cinnamon was first released in February 2013 1 under that name, while former versions of the engine were called Butterfly. It targets multiple hardware platforms and operating systems such as Windows, Linux, Mac OS and Android, also available for the Raspberry Pi, and further provides a JavaScript library to play with chessboard.js or any js GUI.

Contents
  1. Sliding Piece Attacks
  2. Features
    1. Board Representation
    2. Search
    3. Evaluation
    4. Misc
  3. See also
  4. Forum Posts
  5. External Links
    1. Chess Engine
    2. Misc
  6. References

Sliding Piece Attacks

Cinnamon 1.2 applied a kind of classical approach to generate ray-wise sliding piece attacks, captures and quiet moves. Cinnamon 2.0 already used line-wise occupancy lookups. Four pre-calculated attack arrays containing attack bitboards on ranks, files, diagonals and anti-diagonals were indexed by the square of the sliding piece, and the associated occupancy index of that line, determining the blockers affecting the attack set. Rather than to get the occupancy index from incremental updated rotated bitboards for each of the four line kinds, Cinnamon extracts line occupancies into a dense index range using multiplication and shift right, as mentioned in diagonals to rank or flip about the diagonal. The resulting 8-bit occupancy requires 512 KiB for all lookup tables, so considering the inner six bits would quarter the table sizes. In Cinnamon 2.3 the occupancy index may be computed by the PEXT instruction, if the executable is compiled with BMI2 enabled.

Features

2

Board Representation

Evaluation

Misc

See also

Forum Posts

Chess Engine

Misc

Cinnamomum burmannii from Wikipedia

Cinnamomum cassia from Wikipedia

Cinnamomum verum from Wikipedia

Watch on YouTube

References

Up one Level


  1. Cinnamon « G 6↩︎

  2. GitHub - gekomad/Cinnamon: C++ UCI chess engine↩︎

Categories: Open Source · GPL · PC · UCI · Chess960 · ARM · X86 · X64 · Android · Mac · Linux · Windows · Plant · Music

What links here

Contributors: GerdIsenberg.