From c31961da322d9700fd6604541cbce5a4042f9b24 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Sun, 5 May 2019 16:54:27 +0100 Subject: Add seeds for reproducible runs --- app/Main.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app/Main.hs') diff --git a/app/Main.hs b/app/Main.hs index 277533c..18173ba 100644 --- a/app/Main.hs +++ b/app/Main.hs @@ -209,8 +209,8 @@ handleOpts :: Opts -> IO () handleOpts (Fuzz out configF _ _ n) = do config <- getConfig configF _ <- V.runFuzz config - V.defaultYosys - (V.fuzzMultiple n Nothing (V.proceduralSrc "top" config)) + V.defaultYosys + (V.fuzzMultiple n Nothing (V.proceduralSrc "top" config)) return () handleOpts (Generate f c) = do config <- getConfig c -- cgit