aboutsummaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2018-11-30 23:01:01 +0000
committerYann Herklotz <ymherklotz@gmail.com>2018-11-30 23:01:01 +0000
commit21b670902a00e3211a488b929fea03c6b9693169 (patch)
tree6c0595591ca1b0c416587fb7117e930d8f248915 /app
parentc4c80116eca7d498176b3f6fb8278f5bf8a17ea3 (diff)
downloadverismith-21b670902a00e3211a488b929fea03c6b9693169.tar.gz
verismith-21b670902a00e3211a488b929fea03c6b9693169.zip
Fix type issue in main
Diffstat (limited to 'app')
-rw-r--r--app/Main.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Main.hs b/app/Main.hs
index d41d46b..e3efc80 100644
--- a/app/Main.hs
+++ b/app/Main.hs
@@ -14,6 +14,6 @@ instance Labellable Gate where
main :: IO ()
--main = sample (arbitrary :: Gen (Circuit Input))
main = do
- gr <- randomDAG 100 :: IO (Gr Gate ())
+ gr <- genRandomDAG 100 :: IO (Gr Gate ())
-- _ <- runGraphviz (graphToDot quickParams $ emap (const "") gr) Png "output.png"
T.putStrLn $ generate gr