projects
/
satune.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
af3c00c
)
adding fucntion's fields
author
Hamed
<hamed.gorjiara@gmail.com>
Fri, 16 Jun 2017 17:44:21 +0000
(10:44 -0700)
committer
Hamed
<hamed.gorjiara@gmail.com>
Fri, 16 Jun 2017 17:44:21 +0000
(10:44 -0700)
src/function.h
patch
|
blob
|
history
diff --git
a/src/function.h
b/src/function.h
index f023f4aad8dda58bdcae205a83432bcd7e54d309..82379f782d6db72c06ef53f6783237e6841323b2 100644
(file)
--- a/
src/function.h
+++ b/
src/function.h
@@
-2,9
+2,13
@@
#define FUNCTION_H
#include "classlist.h"
#include "mymemory.h"
-
+#include "ops.h"
+#include "structs.h"
struct Function {
-
+ enum ArithOp op;
+ VectorSet* domains;
+ Set * range;
+ enum OverFlowBehavior overflowbehavior;
Table* table;
};
#endif