# The chess render plugin #### Synopsis :- use_rendering(chess). #### Options supported None #### Reconised terms The `chess` render plugin recognises a proper list of integers in the range 1 .. |List|. Thus, `[1]` is the only representation for a 1x1 board, a 3x3 board width queens may be represented as `[1,3,2]`. A value R in the C-th element of the list places a queen in the C-th column at the R-th row.
## Examples Examples can be found in the two N-queen demo solvers, the [classical](example/queens.pl) and [clp(fd)](example/clpfd_queens.pl) one.
:- use_rendering(chess).
Board = [1,3,2].