split filtering into phase 3

This commit is contained in:
IGI-111
2015-04-12 15:40:15 +02:00
parent 57aa8076ac
commit ef4b58158f
5 changed files with 48 additions and 13 deletions

View File

@@ -21,7 +21,7 @@ data ItemSet = ItemSet (Set Item) deriving (Eq, Ord)
instance Show ItemSet where
show (ItemSet x) =
init $ foldr ((\y old -> y ++ " " ++ old).show) "" (Set.toList x)
init $ foldr ((\y old -> y ++ "," ++ old).show) "" (Set.toList x)
instance Freq ItemSet where
frequency table (ItemSet set) =