Difference between revisions of "Chess960"

From Chessprogramming wiki
Jump to: navigation, search
(Tags: Mobile edit, Mobile web edit)
Line 3: Line 3:
 
'''Chess960''', (or Fischer Random Chess)<br/>
 
'''Chess960''', (or Fischer Random Chess)<br/>
 
a chess variant invented by former [https://en.wikipedia.org/wiki/World_Chess_Champion World Chess Champion] [https://en.wikipedia.org/wiki/Bobby_Fischer Bobby Fischer], introduced on June 19, 1996 in [https://en.wikipedia.org/wiki/Buenos_Aires Buenos Aires], [https://en.wikipedia.org/wiki/Argentina Argentina] <ref>[http://www.chessvariants.org/diffsetup.dir/fischerh.html The birth of Fischer Random Chess] by [[Eric van Reem]]</ref> . Randomizing the pieces on its back rank has been known as ''Shuffle Chess'', but Chess960 introduces rules so that [[Castling|castling]] options are retained in all starting positions, one player's bishops must start on opposite-color squares, and the king must start on a square between the rooks, resulting in 960 unique positions, while the classical [[Initial Position|initial position]] is one of them. Chess960 practically handicaps the application of [http://en.wikibooks.org/wiki/Chess_Opening_Theory opening theory] in classical chess with the [[Opening Book|memorization]] of opening moves, both for human as well for chess programs.
 
a chess variant invented by former [https://en.wikipedia.org/wiki/World_Chess_Champion World Chess Champion] [https://en.wikipedia.org/wiki/Bobby_Fischer Bobby Fischer], introduced on June 19, 1996 in [https://en.wikipedia.org/wiki/Buenos_Aires Buenos Aires], [https://en.wikipedia.org/wiki/Argentina Argentina] <ref>[http://www.chessvariants.org/diffsetup.dir/fischerh.html The birth of Fischer Random Chess] by [[Eric van Reem]]</ref> . Randomizing the pieces on its back rank has been known as ''Shuffle Chess'', but Chess960 introduces rules so that [[Castling|castling]] options are retained in all starting positions, one player's bishops must start on opposite-color squares, and the king must start on a square between the rooks, resulting in 960 unique positions, while the classical [[Initial Position|initial position]] is one of them. Chess960 practically handicaps the application of [http://en.wikibooks.org/wiki/Chess_Opening_Theory opening theory] in classical chess with the [[Opening Book|memorization]] of opening moves, both for human as well for chess programs.
 +
 +
=Programming=
 +
Chess960 is almost identical with chess, except initial positions and the castling rule. A chess software can easily support chess960 with only a few changes.
 +
 +
==Initial positions==
 +
A typical chess engine can support any given position thus it can parse correctly any initial position. It needs to setup and process correctly the castling statuses.
 +
 +
For other software such as chess GUIs which need to generate all initial positions they can simply store all initial FENs or use some algorithms to generate them when needed.
 +
 +
==Notations==
 +
Chess960 can use all chess notations. However, there are some ambiguities.
  
 
=See also=  
 
=See also=  

Revision as of 11:17, 19 February 2021

Home * Games * Chess960

Chess960, (or Fischer Random Chess)
a chess variant invented by former World Chess Champion Bobby Fischer, introduced on June 19, 1996 in Buenos Aires, Argentina [1] . Randomizing the pieces on its back rank has been known as Shuffle Chess, but Chess960 introduces rules so that castling options are retained in all starting positions, one player's bishops must start on opposite-color squares, and the king must start on a square between the rooks, resulting in 960 unique positions, while the classical initial position is one of them. Chess960 practically handicaps the application of opening theory in classical chess with the memorization of opening moves, both for human as well for chess programs.

Programming

Chess960 is almost identical with chess, except initial positions and the castling rule. A chess software can easily support chess960 with only a few changes.

Initial positions

A typical chess engine can support any given position thus it can parse correctly any initial position. It needs to setup and process correctly the castling statuses.

For other software such as chess GUIs which need to generate all initial positions they can simply store all initial FENs or use some algorithms to generate them when needed.

Notations

Chess960 can use all chess notations. However, there are some ambiguities.

See also

Publications

Forum Posts

2005 ...

2010 ...

2015 ...

2020 ...

External Links

References

Up one Level