Fixing autoTuner's bug + making logs more legible
[satune.git] / src / AST / mutableset.h
index 3c2f937d2d54e14117a5ac461697f9c27ef13a5d..9cfa9e6a5acce23e4aab7360c43d72abaf4b2177 100644 (file)
@@ -6,6 +6,9 @@ class MutableSet : public Set {
 public:
        MutableSet(VarType t);
        void addElementMSet(uint64_t element);
-       MEMALLOC;
+       Set *clone(CSolver *solver, CloneMap *map);
+       bool isMutableSet() {return true;}
+       void finalize();
+       CMEMALLOC;
 };
 #endif