Skip to content

niklasf/Cinnamon

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

68 Commits
 
 
 
 
 
 

Repository files navigation

Cinnamon

###UCI Chess Engine

Cinnamon is a chess program for Windows, Linux, Mac OS, Android and ARM, is a console-based chess engine for use with xboard, Arena, Tarrasch, Chess for Android or any UCI-compatible GUI. Cinnamon is also a javascript library to play with chessboardjs or any js GUI.

Version

2.0

Features

  • Available for both Unix, Windows, Mac, Android, ARM and Javascript
  • GPL 3 License
  • UCI protocol
  • Parallel Search - Lazy SMP
  • C++11 source
  • Rotated bitboards
  • Null moves
  • Futility pruning
  • Delta pruning
  • Razoring
  • Interruptible multithread Perft test
  • 32/64 bit architectures
  • Iterative deeping
  • Killer heuristics
  • Lazy evaluation
  • Mvv/Lva
  • Transposition Table
  • Aspiration Windows
  • Late Move Reduction
  • Ponder
  • Available with Tarrasch GUI for Windows
  • Open Book (Polyglot)
  • Gaviota Tablebases
  • Source doc
  • Elo ratings

Binaries

Binaries are available here. All files are compiled statically, no further libraries are necessary.

Compiling

Cinnamon requires C++11, use unique Makefile to compile for many architectures:

$ make

Makefile for cross-compile Linux/Windows/OSX/ARM/Javascript

make cinnamon64-modern-INTEL     > 64-bit optimized for modern Intel cpu
make cinnamon64-modern-AMD       > 64-bit optimized for modern Amd cpu
make cinnamon64-modern           > 64-bit with popcnt bsf sse3 support
make cinnamon64-generic          > Unspecified 64-bit
make cinnamon64-ARM              > Optimized for arm cpu

make cinnamon32-modern           > 32-bit with sse support
make cinnamon32-generic          > Unspecified 32-bit
make cinnamon32-ARM              > Optimized for arm cpu

make cinnamon-js                 > Javascript build

make cinnamon-drmemory           > Memory monitor
make cinnamon-profiler           > Google profiler tool
make cinnamon-gprof              > Gnu profiler tool

add:
 COMP=compiler                   > Use another compiler
 PROFILE_GCC=yes                 > PGO build
 FULL_TEST=yes                   > Unit test
 LIBSTDC=-static                 > Link statically libstdc++

License

Cinnamon is released under the GPLv3+ license.

Credits

Cinnamon was written by Giuseppe Cannella at gmail dot com.

Packages

No packages published

Languages

  • C++ 81.2%
  • HTML 11.6%
  • PHP 4.2%
  • C 1.5%
  • Makefile 1.5%