aboutsummaryrefslogtreecommitdiffstats
path: root/src/Test/VeriFuzz/Types.hs
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2018-11-09 17:19:34 +0000
committerYann Herklotz <ymherklotz@gmail.com>2018-11-09 17:19:34 +0000
commit036baeb670314358c6021aa9da2f23c1787aa3e6 (patch)
treee6084195a38e0224571bfbdb8195252eab9cb65f /src/Test/VeriFuzz/Types.hs
parentadda9ab2f66adeb7fa5c5c7cef6ceb7bb107e169 (diff)
downloadverismith-036baeb670314358c6021aa9da2f23c1787aa3e6.tar.gz
verismith-036baeb670314358c6021aa9da2f23c1787aa3e6.zip
Add initial module files
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)