Merge branch 'master' of ssh://plrg.eecs.uci.edu/home/git/constraint_compiler
[satune.git] / src / AST / boolean.h
index 5e8c5a5e6f9a225af80543f9d1fc4b2f1411cd14..fcd4751dad5cbaa57b8f1d5df8d8788a32b9f735 100644 (file)
@@ -2,7 +2,15 @@
 #define BOOLEAN_H
 #include "classlist.h"
 #include "mymemory.h"
-
+#include "ops.h"
 struct  Boolean {
+    VarType vtype;
+    enum BooleanType btype;
+    Order* order;
+    uint64_t first;
+    uint64_t second;
 };
+
+Boolean* allocBoolean(VarType t);
+Boolean* allocBooleanOrder(Order* order,uint64_t first, uint64_t second);
 #endif