06c54bb21f02d457ea50622df6b31f7547051709
[satune.git] / src / AST / predicate.h
1 #ifndef PREDICATE_H
2 #define PREDICATE_H
3 #include "classlist.h"
4 #include "mymemory.h"
5 #include "ops.h"
6 #include "structs.h"
7
8 struct Predicate {
9     enum CompOp op;
10     VectorSet* domains;
11 };
12
13
14 Predicate* allocPredicate(enum CompOp op, Set ** domain, uint numDomain);
15 #endif