hermit-1.0.1: examples/qsort/QSort.hs
{-# LANGUAGE CPP #-}
module Main where
import HList
import Data.List
data Tree a = Node (Tree a) (Tree a) | Leaf a
{-# INLINE repR #-}
repR :: ([a] -> [a]) -> ([a] -> H a)
repR f = repH . f
{-# INLINE absR #-}
absR :: ([a] -> H a) -> ([a] -> [a])
absR g = absH . g
qsort :: Ord a => [a] -> [a]
qsort [] = []
qsort (a:as) = qsort bs ++ [a] ++ qsort cs
where
(bs , cs) = partition (< a) as
main :: IO ()
main = print (qsort [8,3,5,7,2,9,4,6,3,2])
-- Should be in a "List" module
{-# RULES "++ []" forall xs . xs ++ [] = xs #-}
{-# RULES "++ strict" (++) undefined = undefined #-}
-- The "Algebra" for repH
{-# RULES "repH ++" forall xs ys . repH (xs ++ ys) = repH xs . repH ys #-}
{-# RULES "repH []" repH [] = id #-}
{-# RULES "repH (:)" forall x xs . repH (x:xs) = ((:) x) . repH xs #-}
-- Needed because the fusion rule we generate isn't too useful yet.
{-# RULES "repH-absH-fusion" [~] forall h. repH (absH h) = h #-}