Sjaak Glebbeek

Home * Engines * Sjaak

Sjaak, [1]

an open source engine under the GNU General Public Licence by Evert Glebbeek as younger sibling of Jazz written in C, but able to play chess variants on various board sizes compliant to the Chess Engine Communication Protocol. Sjaak was first released in January 2011, not to confused with Ronald de Man’s older private engine with the same name [2].

Variants

Indian Grand Chess, or possibly Turkish Grand Chess. On a 10x10 with four extra pieces.

Description

Board Representation

Despite boards exceeding 64 squares, like 10x8, 12x8, and 10x10, Sjaak is a native bitboard engine, utilizing either GCC’s __int128 [5] extenstion on 64-bit platforms such as x86-64 or 128 bit vectors of integers on 32-bit platforms, the latter supporting SSE2 if available. Sjaak applies Kindergarten Bitboards to determine sliding piece attacks [6].

Sjaak uses a fail-soft alpha-beta principal variation search with quiescence, null move pruning, late move reductions and check extensions inside an iterative deepening framework with transposition table [7]. Move ordering considers the killer, countermove and history heuristics. A modified version of a SEE routine from Jazz is used to evaluate captures .

Evaluation

Sjaak’s static evaluation takes material balance, static piece-square tables derived from heuristics based on how pieces move, mobility and king safety into account, the latter only in chess variants with one king per side [8].

Namesake

See also

Forum Posts

2011 …

2015 …

2016

SjaakII 1.2.0 is out! by Evert Glebbeek, CCC, January 08, 2016 SjaakII 1.2.1 is out! by Evert Glebbeek, CCC, January 10, 2016

2017

Chess Engine

Misc

References

  1. Sjaak - Dutch given name derived from Jacob, pronunciation similar to Schaak
  2. Re: New Spartan-Chess engine: Sjaak by Vladimir Xern, CCC, January 21, 2011
  3. SjaakII 1.0.0 by Evert Glebbeek, CCC, March 18, 2015
  4. Shogi by Evert Glebbeek, CCC, October 20, 2014
  5. __int128 - Using the GNU Compiler Collection (GCC)
  6. Chess (Jazz & Sjaak) design
  7. Chess (Jazz & Sjaak) search
  8. Chess (Jazz & Sjaak) evaluation

Up one level