summaryrefslogtreecommitdiff
path: root/src/core/kind.h
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2009-11-17 16:40:19 +0000
committerMorgan Deters <mdeters@gmail.com>2009-11-17 16:40:19 +0000
commit0201aa29bea8467e5cc07f2d0af68a4da3e86ec1 (patch)
tree548f42c4244176fb91956e9571451842fd85e482 /src/core/kind.h
parent7293554b109742697d4d928ed7b58acadc6de947 (diff)
fixes/redesign of source layout from meeting
Diffstat (limited to 'src/core/kind.h')
-rw-r--r--src/core/kind.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/core/kind.h b/src/core/kind.h
new file mode 100644
index 000000000..9c4e4d5ab
--- /dev/null
+++ b/src/core/kind.h
@@ -0,0 +1,38 @@
+/********************* -*- C++ -*- */
+/** kind.h
+ ** This file is part of the CVC4 prototype.
+ ** Copyright (c) 2009 The Analysis of Computer Systems Group (ACSys)
+ ** Courant Institute of Mathematical Sciences
+ ** New York University
+ ** See the file COPYING in the top-level source directory for licensing
+ ** information.
+ **
+ **/
+
+#ifndef __CVC4_KIND_H
+#define __CVC4_KIND_H
+
+namespace CVC4 {
+
+// TODO: create this file (?) from theory solver headers so that we
+// have a collection of kinds from all. This file is mainly a
+// placeholder for design & development work.
+
+enum Kind {
+ UNDEFINED_KIND = -1,
+ EQUAL,
+ AND,
+ OR,
+ XOR,
+ NOT,
+ PLUS,
+ MINUS,
+ ITE,
+ IFF,
+ SKOLEM,
+ SUBST
+};/* enum Kind */
+
+}/* CVC4 namespace */
+
+#endif /* __CVC4_KIND_H */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback