add start category S in NQueens. This helps the EditorApp to find the start category

This commit is contained in:
krasimir
2010-10-13 13:53:29 +00:00
parent edf46e3a4d
commit 2ab3081c07
2 changed files with 6 additions and 1 deletions

View File

@@ -1,8 +1,10 @@
concrete NQueensAscii of NQueens = NatAscii ** {
lincat Matrix, Vec = Str ;
lincat S, Matrix, Vec = Str ;
ListNat, Sat = {} ;
lin queens m = m ;
lin nilV _ _ = "" ;
consV _ j k _ _ v = j ++ "X" ++ k ++ ";" ++ v ;