aboutsummaryrefslogtreecommitdiffstats
path: root/src/VeriFuzz/Internal.hs
diff options
context:
space:
mode:
authorYann Herklotz Grave <git@yannherklotzgrave.com>2019-03-01 12:31:45 +0000
committerYann Herklotz Grave <git@yannherklotzgrave.com>2019-03-01 12:31:45 +0000
commit6b88aa87051e63c93574b21eacfb653f29b77046 (patch)
tree4f02250dccf9aaf82f3dbf2fc029b79880ea795b /src/VeriFuzz/Internal.hs
parent833f140005b70ce54a462a38bb9ecb04321b135f (diff)
downloadverismith-6b88aa87051e63c93574b21eacfb653f29b77046.tar.gz
verismith-6b88aa87051e63c93574b21eacfb653f29b77046.zip
Add missing modules to Internal module
Diffstat (limited to 'src/VeriFuzz/Internal.hs')
-rw-r--r--src/VeriFuzz/Internal.hs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/VeriFuzz/Internal.hs b/src/VeriFuzz/Internal.hs
index 76b2ac7..541e517 100644
--- a/src/VeriFuzz/Internal.hs
+++ b/src/VeriFuzz/Internal.hs
@@ -16,9 +16,10 @@ module VeriFuzz.Internal
, showT
, comma
-- * Module Specific Internals
+ , module VeriFuzz.Internal.AST
, module VeriFuzz.Internal.Circuit
, module VeriFuzz.Internal.Simulator
- , module VeriFuzz.Internal.AST
+ , module VeriFuzz.Internal.Template
)
where
@@ -27,6 +28,7 @@ import qualified Data.Text as T
import VeriFuzz.Internal.AST
import VeriFuzz.Internal.Circuit
import VeriFuzz.Internal.Simulator
+import VeriFuzz.Internal.Template
-- | Converts unsafe list functions in the Prelude to a safe version.
safe :: ([a] -> b) -> [a] -> Maybe b