Merge branch 'master' of ssh://demsky.eecs.uci.edu/home/git/constraint_compiler
[satune.git] / src / AST / function.h
1 #ifndef FUNCTION_H
2 #define FUNCTION_H
3 #include "classlist.h"
4 #include "mymemory.h"
5 #include "ops.h"
6 #include "structs.h"
7 struct Function {
8     enum ArithOp op;
9     VectorSet* domains; 
10     Set * range;
11     enum OverFlowBehavior overflowbehavior;
12     Table* table;
13 };
14 #endif