Add some notes
[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         CompOp op;
10         VectorSet* domains;
11 };
12
13
14 Predicate* allocPredicate(CompOp op, Set ** domain, uint numDomain);
15 #endif