Skip to content

Instantly share code, notes, and snippets.

View delanoe's full-sized avatar

Alexandre Delanoë delanoe

View GitHub Profile
@cs
cs / apriori.hs
Created June 11, 2012 08:34
Implementation of the Apriori Algorithm (as presented in the lecture "Knowledge Discovery in Databases" at LMU Munich) in Haskell including HUnit tests.
module Main where
import qualified Data.List as List
import qualified Data.Set as Set
import Test.HUnit
main :: IO ()
main = do { runTestTT allTests ; return () }