Merge branch 'master' of ssh://plrg.eecs.uci.edu/home/git/constraint_compiler
[satune.git] / src / AST / boolean.h
1 #ifndef BOOLEAN_H
2 #define BOOLEAN_H
3 #include "classlist.h"
4 #include "mymemory.h"
5 #include "ops.h"
6 struct  Boolean {
7     VarType vtype;
8     enum BooleanType btype;
9     Order* order;
10     uint64_t first;
11     uint64_t second;
12 };
13
14 Boolean* allocBoolean(VarType t);
15 Boolean* allocBooleanOrder(Order* order,uint64_t first, uint64_t second);
16 #endif