aboutsummaryrefslogtreecommitdiffstats
path: root/src/Test/VeriFuzz/Graph/ASTGen.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Test/VeriFuzz/Graph/ASTGen.hs')
-rw-r--r--src/Test/VeriFuzz/Graph/ASTGen.hs24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/Test/VeriFuzz/Graph/ASTGen.hs b/src/Test/VeriFuzz/Graph/ASTGen.hs
index d652752..2b241e1 100644
--- a/src/Test/VeriFuzz/Graph/ASTGen.hs
+++ b/src/Test/VeriFuzz/Graph/ASTGen.hs
@@ -1,5 +1,5 @@
{-|
-Module : Test.VeriFuzz.Graph.ASTGen
+Module : VeriFuzz.Graph.ASTGen
Description : Generates the AST from the graph directly.
Copyright : (c) 2018-2019, Yann Herklotz Grave
License : BSD-3
@@ -10,18 +10,18 @@ Portability : POSIX
Generates the AST from the graph directly.
-}
-module Test.VeriFuzz.Graph.ASTGen where
+module VeriFuzz.Graph.ASTGen where
-import Data.Foldable (fold)
-import Data.Graph.Inductive (LNode, Node)
-import qualified Data.Graph.Inductive as G
-import Data.Maybe (catMaybes)
-import qualified Data.Text as T
-import Test.VeriFuzz.Circuit
-import Test.VeriFuzz.Internal.Gen
-import Test.VeriFuzz.Internal.Shared
-import Test.VeriFuzz.Verilog.AST
-import Test.VeriFuzz.Verilog.Helpers
+import Data.Foldable (fold)
+import Data.Graph.Inductive (LNode, Node)
+import qualified Data.Graph.Inductive as G
+import Data.Maybe (catMaybes)
+import qualified Data.Text as T
+import VeriFuzz.Circuit
+import VeriFuzz.Internal.Gen
+import VeriFuzz.Internal.Shared
+import VeriFuzz.Verilog.AST
+import VeriFuzz.Verilog.Helpers
-- | Converts a 'CNode' to an 'Identifier'.
frNode :: Node -> Identifier