Bug fix for printing ...
[satune.git] / src / classlist.h
index c6a7cb7f434902896e69c9f0cf20a4bf3687458e..fee6d9bc7c14359893b61b1724d5e19fdc63ecc4 100644 (file)
@@ -9,45 +9,69 @@
 
 #ifndef CLASSLIST_H
 #define CLASSLIST_H
-//#include "hashset.h"
+
 #include "mymemory.h"
 #include <inttypes.h>
-#define bool int
-#define true 1
-#define false 0
+#include "classes.h"
+#include "astnode.h"
 
-struct CSolver;
-typedef struct CSolver CSolver;
 
-struct Constraint;
-typedef struct Constraint Constraint;
+class BooleanOrder;
+class BooleanVar;
 
-struct Boolean;
-typedef struct Boolean Boolean;
+class BooleanPredicate;
+class ASTNode;
+
+
+
+class ElementFunction;
+class ElementSet;
+class ElementConst;
+
+class FunctionOperator;
+class FunctionTable;
 
-struct IncrementalSolver;
-typedef struct IncrementalSolver IncrementalSolver;
 
-struct Set;
-typedef struct Set Set;
 
-typedef struct Set MutableSet;
+class PredicateTable;
+class PredicateOperator;
 
-struct Element;
-typedef struct Element Element;
 
-struct Function;
-typedef struct Function Function;
+class OrderPair;
 
-struct Predicate;
-typedef struct Predicate Predicate;
+class OrderElement;
+class IntegerEncodingRecord;
+class Transform;
+class Pass;
+class Transformer;
+class AnalysisData;
 
-struct Table;
-typedef struct Table Table;
+class ElementEncoding;
+class FunctionEncoding;
+class OrderEncoding;
 
-struct Order;
-typedef struct Order Order;
+class OrderGraph;
+class OrderNodeKey;
+class OrderNode;
+class OrderEdge;
+class DOREdge;
 
-typedef unsigned int uint;
-typedef uint64_t VarType;
+class AutoTuner;
+class SearchTuner;
+class TunableSetting;
+
+class TunableDesc;
+
+class OrderResolver;
+class DecomposeOrderResolver;
+
+class EncodingGraph;
+class EncodingNode;
+class EncodingEdge;
+
+struct IncrementalSolver;
+typedef struct IncrementalSolver IncrementalSolver;
+struct TableEntry;
+typedef struct TableEntry TableEntry;
+typedef int TunableParam;
 #endif