aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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