Finish clone
[satune.git] / src / AST / mutableset.h
1 #ifndef MUTABLESET_H
2 #define MUTABLESET_H
3 #include "set.h"
4
5 class MutableSet : public Set {
6 public:
7         MutableSet(VarType t);
8         void addElementMSet(uint64_t element);
9         Set *clone(CSolver *solver, CloneMap *map);
10         MEMALLOC;
11 };
12 #endif