Files
gf-core/examples/nqueens/NQueensAscii.gf
2010-03-21 19:01:57 +00:00

11 lines
203 B
Plaintext

concrete NQueensAscii of NQueens = NatAscii ** {
lincat Matrix, Vec = Str ;
Constr, Sat = {} ;
lin nilV _ _ = "" ;
consV _ _ f _ l _ v = f ++ "X" ++ l ++ "\n" ++ v ;
matrix _ v = v ;
}