aboutsummaryrefslogtreecommitdiffstats
path: root/src/VeriFuzz/Mutate.hs
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2019-02-01 19:58:07 +0000
committerYann Herklotz <ymherklotz@gmail.com>2019-02-01 19:58:07 +0000
commit157559045f477e443a3f965af6a1959f59930eb8 (patch)
treea8a69429bb5c9ee7fb1ea6643173533f8dad1789 /src/VeriFuzz/Mutate.hs
parentfa77a4b1ad2400bce8a51dee7d41368fed653ed9 (diff)
downloadverismith-157559045f477e443a3f965af6a1959f59930eb8.tar.gz
verismith-157559045f477e443a3f965af6a1959f59930eb8.zip
Fix imports
Diffstat (limited to 'src/VeriFuzz/Mutate.hs')
-rw-r--r--src/VeriFuzz/Mutate.hs17
1 files changed, 8 insertions, 9 deletions
diff --git a/src/VeriFuzz/Mutate.hs b/src/VeriFuzz/Mutate.hs
index 3e03a02..705e607 100644
--- a/src/VeriFuzz/Mutate.hs
+++ b/src/VeriFuzz/Mutate.hs
@@ -1,5 +1,5 @@
{-|
-Module : VeriFuzz.Verilog.Mutation
+Module : VeriFuzz.Mutation
Description : Functions to mutate the Verilog AST.
Copyright : (c) 2018-2019, Yann Herklotz Grave
License : BSD-3
@@ -11,16 +11,15 @@ Functions to mutate the Verilog AST from "VeriFuzz.Verilog.AST" to generate more
random patterns, such as nesting wires instead of creating new ones.
-}
-module VeriFuzz.Verilog.Mutate where
+module VeriFuzz.Mutate where
import Control.Lens
-import Data.Maybe (catMaybes, fromMaybe)
-import Data.Text (Text)
-import qualified Data.Text as T
-import VeriFuzz.Internal.Gen
-import VeriFuzz.Internal.Shared
-import VeriFuzz.Verilog.AST
-import VeriFuzz.Verilog.CodeGen
+import Data.Maybe (catMaybes, fromMaybe)
+import Data.Text (Text)
+import qualified Data.Text as T
+import VeriFuzz.AST
+import VeriFuzz.CodeGen
+import VeriFuzz.Internal
-- | Return if the 'Identifier' is in a 'ModDecl'.
inPort :: Identifier -> ModDecl -> Bool