From: Matthijs Kooijman Date: Fri, 30 Jan 2009 09:13:45 +0000 (+0100) Subject: Rename a bunch of type variables. X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fmaster-project%2Fc%CE%BBash.git;a=commitdiff_plain;h=a4852bd912875420e1c99cb135531a7e1df30e16 Rename a bunch of type variables. --- diff --git a/Sim.hs b/Sim.hs index 771896f..3be038d 100644 --- a/Sim.hs +++ b/Sim.hs @@ -12,23 +12,23 @@ simulate f input s = do output = run f input s -- A circuit with input of type a, state of type s and output of type b -type Circuit a s b = a -> s -> (s, b) +type Circuit i s o = i -> s -> (s, o) -run :: Circuit a s b -> [a] -> s -> [(a, b, s)] +run :: Circuit i s o -> [i] -> s -> [(i, o, s)] run f (i:input) s = (i, o, s'): (run f input s') where (s', o) = f i s run _ [] _ = [] -simulateIO :: (Read a, Show a, Show b, Show s) => Sim.Circuit a s b -> s -> IO() +simulateIO :: (Read i, Show i, Show o, Show s) => Sim.Circuit i s o -> s -> IO() simulateIO c s = do putStr "Initial State: " putStr $ show s putStr "\n\n" runIO c s -runIO :: (Read a, Show a, Show b, Show s) => Sim.Circuit a s b -> s -> IO() +runIO :: (Read i, Show i, Show o, Show s) => Sim.Circuit i s o -> s -> IO() runIO f s = do putStr "\nInput? " line <- getLine