summaryrefslogtreecommitdiff
path: root/src/expr/kind.h
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2009-11-19 22:07:01 +0000
committerMorgan Deters <mdeters@gmail.com>2009-11-19 22:07:01 +0000
commitcd98370b338a0cc5343067151884a06431a1d92c (patch)
tree7e61d8cf61ada9fef8f470a3c781a07a5df5a0fc /src/expr/kind.h
parent394791604a62e19763a8a45328bc5177d91fabf9 (diff)
testing framework, configure fixes, incorporations from meeting, continued work
Diffstat (limited to 'src/expr/kind.h')
-rw-r--r--src/expr/kind.h30
1 files changed, 21 insertions, 9 deletions
diff --git a/src/expr/kind.h b/src/expr/kind.h
index 9c4e4d5ab..98cc7e2e3 100644
--- a/src/expr/kind.h
+++ b/src/expr/kind.h
@@ -9,8 +9,8 @@
**
**/
-#ifndef __CVC4_KIND_H
-#define __CVC4_KIND_H
+#ifndef __CVC4__KIND_H
+#define __CVC4__KIND_H
namespace CVC4 {
@@ -19,20 +19,32 @@ namespace CVC4 {
// placeholder for design & development work.
enum Kind {
+ /* undefined */
UNDEFINED_KIND = -1,
+
+ /* built-ins */
EQUAL,
+ ITE,
+ SKOLEM,
+ VARIABLE,
+
+ /* propositional connectives */
+ FALSE,
+ TRUE,
+
+ NOT,
+
AND,
+ IFF,
OR,
XOR,
- NOT,
+
+ /* from arith */
PLUS,
- MINUS,
- ITE,
- IFF,
- SKOLEM,
- SUBST
+ MINUS
+
};/* enum Kind */
}/* CVC4 namespace */
-#endif /* __CVC4_KIND_H */
+#endif /* __CVC4__KIND_H */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback