From ef44cea1f59355739c77bc687d75854294118034 Mon Sep 17 00:00:00 2001 From: Hamed Date: Fri, 16 Jun 2017 10:44:21 -0700 Subject: [PATCH] adding fucntion's fields --- src/function.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/function.h b/src/function.h index f023f4a..82379f7 100644 --- 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 -- 2.34.1