backout changes
[satune.git] / src / AST / mutableset.h
index b0359d3d5165d9e1241f6e7affa35bd749f311d1..9cfa9e6a5acce23e4aab7360c43d72abaf4b2177 100644 (file)
@@ -3,9 +3,12 @@
 #include "set.h"
 
 class MutableSet : public Set {
- public:
+public:
        MutableSet(VarType t);
        void addElementMSet(uint64_t element);
-       MEMALLOC;
+       Set *clone(CSolver *solver, CloneMap *map);
+       bool isMutableSet() {return true;}
+       void finalize();
+       CMEMALLOC;
 };
 #endif