adding fucntion's fields
authorHamed <hamed.gorjiara@gmail.com>
Fri, 16 Jun 2017 17:44:21 +0000 (10:44 -0700)
committerHamed <hamed.gorjiara@gmail.com>
Fri, 16 Jun 2017 17:44:21 +0000 (10:44 -0700)
src/function.h

index f023f4aad8dda58bdcae205a83432bcd7e54d309..82379f782d6db72c06ef53f6783237e6841323b2 100644 (file)
@@ -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