Merging with branch master and fixing bugs
[satune.git] / src / classlist.h
index ac07af9e8066824cd5f866fb3db864a19efaffe1..2e395f7ac87fc74b9a9cb45a5bf39dcbc76f8790 100644 (file)
@@ -9,51 +9,67 @@
 
 #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;
+class CSolver;
+class SATEncoder;
+class Boolean;
+class BooleanOrder;
+class BooleanVar;
+class BooleanLogic;
+class BooleanPredicate;
+class ASTNode;
+class Set;
+class MutableSet;
 
-struct Boolean;
-typedef struct Boolean Boolean;
+class ElementFunction;
+class ElementSet;
+class ElementConst;
+class Element;
 
-struct IncrementalSolver;
-typedef struct IncrementalSolver IncrementalSolver;
+class FunctionOperator;
+class FunctionTable;
+class Function;
 
-struct Set;
-typedef struct Set Set;
+class Predicate;
+class PredicateTable;
+class PredicateOperator;
+class Table;
+class Order;
+class OrderPair;
 
-typedef struct Set MutableSet;
+class OrderElement;
+class IntegerEncodingRecord;
+class Transform;
 
-struct Element;
-typedef struct Element Element;
+class ElementEncoding;
+class FunctionEncoding;
+class OrderEncoding;
 
-struct Function;
-typedef struct Function Function;
+class OrderGraph;
+class OrderNode;
+class OrderEdge;
 
-struct Predicate;
-typedef struct Predicate Predicate;
+class AutoTuner;
+class SearchTuner;
+class TunableSetting;
+class Pass;
+class Transform;
 
-struct Table;
-typedef struct Table Table;
+struct IncrementalSolver;
+typedef struct IncrementalSolver IncrementalSolver;
 
-struct Order;
-typedef struct Order Order;
+struct TableEntry;
+typedef struct TableEntry TableEntry;
 
-struct ElementEncoder;
-typedef struct ElementEncoder ElementEncoder;
+class Tuner;
+class TunableDesc;
 
-struct FunctionEncoder;
-typedef struct FunctionEncoder FunctionEncoder;
+typedef int TunableParam;
 
 typedef unsigned int uint;
+typedef long int int64;
 typedef uint64_t VarType;
 #endif