Switch to vector class
[satune.git] / src / classlist.h
index 4c48778467f6ea418c822eb0789fb78be3a0e551..32230d0b3e69399a17ff1ee706aacc0c769bb145 100644 (file)
@@ -9,21 +9,81 @@
 
 #ifndef CLASSLIST_H
 #define CLASSLIST_H
-#include "hashset.h"
+
 #include "mymemory.h"
 #include <inttypes.h>
+#define bool int
+#define true 1
+#define false 0
+
+class CSolver;
+struct SATEncoder;
+typedef struct SATEncoder SATEncoder;
 
-class Constraint;
 class Boolean;
-class IncrementalSolver;
+class BooleanOrder;
+class BooleanVar;
+class BooleanLogic;
+class BooleanPredicate;
+class ASTNode;
 class Set;
 class MutableSet;
+
+class ElementFunction;
+class ElementSet;
+class ElementConst;
 class Element;
+
+class FunctionOperator;
+class FunctionTable;
 class Function;
+
 class Predicate;
+class PredicateTable;
+class PredicateOperator;
 class Table;
 class Order;
 
+struct IncrementalSolver;
+typedef struct IncrementalSolver IncrementalSolver;
+
+struct OrderPair;
+typedef struct OrderPair OrderPair;
+
+struct OrderElement;
+typedef struct OrderElement OrderElement;
+
+struct ElementEncoding;
+typedef struct ElementEncoding ElementEncoding;
+
+struct FunctionEncoding;
+typedef struct FunctionEncoding FunctionEncoding;
+
+struct OrderEncoding;
+typedef struct OrderEncoding OrderEncoding;
+
+struct TableEntry;
+typedef struct TableEntry TableEntry;
+
+struct OrderGraph;
+typedef struct OrderGraph OrderGraph;
+
+struct OrderNode;
+typedef struct OrderNode OrderNode;
+
+struct OrderEdge;
+typedef struct OrderEdge OrderEdge;
+
+struct OrderEncoder;
+typedef struct OrderEncoder OrderEncoder;
+
+struct Tuner;
+typedef struct Tuner Tuner;
+struct TunableDesc;
+typedef struct TunableDesc TunableDesc;
+typedef int TunableParam;
+
 typedef unsigned int uint;
+typedef long int int64;
 typedef uint64_t VarType;
 #endif