CQL: The Chess Query Language (version 6.0.5)
What is CQL?
Chess Query Language (CQL) searches for user-defined patterns in chess games and studies.To use CQL
- first, define the pattern you are looking for in the CQL language;
- second, run
cql
specifying that pattern.
Quick intro: mirror mates
Suppose the pattern you are looking for is mirror mates, where the mated king is surrounded by empty squares:(found from CQL file: mirrormate.cql)
You can find these by running
cql -i sample.pgn examples/mirrormate.cql
Here, sample.pgn is the file of games to search. The pattern specifying mirror mate is in the file mirrormate.cql.
The meaning of the terms in the pattern specified in mirrormate.cql are:
-
btm
means black to move; -
mate
means checkmate; -
_
means empty square; -
attackedby
means attacked by. -
k
is the black king. -
_ attackedby k
is the set of empty squares adjacent to the black king. -
_ attackedby k == 8
means this set has 8 squares in it -
flipcolor
means to repeat the search with colors interchanged.
Click on the examples tab in the sidebar for more examples.
Additional documentation
Additional contributed documentation (currently in draft form) is available at documentation . The EG discusses CQL in a number of columns, particularly by Emil Vlasàk.
Downloads
CQL may be downloaded here. Questions or comments about CQL should be directed tocosteff
at the domain gmail.com
.
Version
The current version of CQL is CQL 6.0.5.