Breaking Multituner into comptuner and kmeanstuner
[satune.git] / src / classlist.h
index 8baae7a27304f84a7718d83683505a6a2eae0722..c1820638d4eb5691db6aaf20f712cff44bc4edcc 100644 (file)
 
 #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 SATEncoder;
-typedef struct SATEncoder SATEncoder;
 
-class Boolean;
 class BooleanOrder;
 class BooleanVar;
-class BooleanLogic;
+
 class BooleanPredicate;
 class ASTNode;
 
-struct IncrementalSolver;
-typedef struct IncrementalSolver IncrementalSolver;
 
-struct Set;
-typedef struct Set Set;
-typedef struct Set MutableSet;
 
 class ElementFunction;
 class ElementSet;
 class ElementConst;
-class Element;
-
-typedef struct FunctionOperator FunctionOperator;
-typedef struct FunctionTable FunctionTable;
 
-struct Function;
-typedef struct Function Function;
+class FunctionOperator;
+class FunctionTable;
 
-struct Predicate;
-typedef struct Predicate Predicate;
 
-struct PredicateTable;
-typedef struct PredicateTable PredicateTable;
 
-struct PredicateOperator;
-typedef struct PredicateOperator PredicateOperator;
+class PredicateTable;
+class PredicateOperator;
 
-struct Table;
-typedef struct Table Table;
 
-struct Order;
-typedef struct Order Order;
+class OrderPair;
 
-struct OrderPair;
-typedef struct OrderPair OrderPair;
+class OrderElement;
+class IntegerEncodingRecord;
+class Transform;
+class Pass;
+class Transformer;
+class AnalysisData;
 
-struct OrderElement;
-typedef struct OrderElement OrderElement;
+class ElementEncoding;
+class FunctionEncoding;
+class OrderEncoding;
 
-struct ElementEncoding;
-typedef struct ElementEncoding ElementEncoding;
+class OrderGraph;
+class OrderNodeKey;
+class OrderNode;
+class OrderEdge;
+class DOREdge;
 
-struct FunctionEncoding;
-typedef struct FunctionEncoding FunctionEncoding;
+class AutoTuner;
+class CompTuner;
+class SearchTuner;
+class TunableSetting;
 
-struct OrderEncoding;
-typedef struct OrderEncoding OrderEncoding;
-
-struct TableEntry;
-typedef struct TableEntry TableEntry;
+class SerializeTuner;
 
-struct OrderGraph;
-typedef struct OrderGraph OrderGraph;
+class TunableDesc;
 
-struct OrderNode;
-typedef struct OrderNode OrderNode;
+class OrderResolver;
+class DecomposeOrderResolver;
 
-struct OrderEdge;
-typedef struct OrderEdge OrderEdge;
+class EncodingGraph;
+class EncodingNode;
+class EncodingEdge;
+class EncodingSubGraph;
 
-struct OrderEncoder;
-typedef struct OrderEncoder OrderEncoder;
-
-struct Tuner;
-typedef struct Tuner Tuner;
-struct TunableDesc;
-typedef struct TunableDesc TunableDesc;
+struct IncrementalSolver;
+typedef struct IncrementalSolver IncrementalSolver;
+struct TableEntry;
+typedef struct TableEntry TableEntry;
 typedef int TunableParam;
-
-typedef unsigned int uint;
-typedef long int int64;
-typedef uint64_t VarType;
 #endif