aboutsummaryrefslogtreecommitdiffstats
path: root/src/Test/VeriFuzz/Types.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Test/VeriFuzz/Types.hs')
-rw-r--r--src/Test/VeriFuzz/Types.hs8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/Test/VeriFuzz/Types.hs b/src/Test/VeriFuzz/Types.hs
new file mode 100644
index 0000000..9c0de17
--- /dev/null
+++ b/src/Test/VeriFuzz/Types.hs
@@ -0,0 +1,8 @@
+module VeriFuzz.Types where
+
+data Gate = And
+ | Or
+ | Xor
+ | Nor
+ | Nand
+ deriving (Show, Eq, Ord)