rename
[satune.git] / src / classlist.h
index 4c48778467f6ea418c822eb0789fb78be3a0e551..361dcb6d0756f733109cc595327c9f83aee0efee 100644 (file)
@@ -9,20 +9,50 @@
 
 #ifndef CLASSLIST_H
 #define CLASSLIST_H
-#include "hashset.h"
+
 #include "mymemory.h"
 #include <inttypes.h>
+#define bool int
+#define true 1
+#define false 0
+
+struct CSolver;
+typedef struct CSolver CSolver;
+
+struct Constraint;
+typedef struct Constraint Constraint;
+
+struct Boolean;
+typedef struct Boolean Boolean;
+
+struct IncrementalSolver;
+typedef struct IncrementalSolver IncrementalSolver;
+
+struct Set;
+typedef struct Set Set;
+
+typedef struct Set MutableSet;
+
+struct Element;
+typedef struct Element Element;
+
+struct Function;
+typedef struct Function Function;
+
+struct Predicate;
+typedef struct Predicate Predicate;
+
+struct Table;
+typedef struct Table Table;
+
+struct Order;
+typedef struct Order Order;
+
+struct ElementEncoding;
+typedef struct ElementEncoding ElementEncoding;
 
-class Constraint;
-class Boolean;
-class IncrementalSolver;
-class Set;
-class MutableSet;
-class Element;
-class Function;
-class Predicate;
-class Table;
-class Order;
+struct FunctionEncoding;
+typedef struct FunctionEncoding FunctionEncoding;
 
 typedef unsigned int uint;
 typedef uint64_t VarType;