mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-21 10:49:33 -06:00
11 lines
201 B
Plaintext
11 lines
201 B
Plaintext
concrete NQueensAscii of NQueens = NatAscii ** {
|
|
|
|
lincat Matrix, Vec = Str ;
|
|
Constr, Sat = {} ;
|
|
|
|
lin nilV _ _ = "" ;
|
|
consV _ j k _ _ v = j ++ "X" ++ k ++ "\n" ++ v ;
|
|
|
|
matrix _ v = v ;
|
|
|
|
} |