fix tuner situation
[satune.git] / src / classlist.h
index c02268df29bebbe49d56cfca2fb272b297bc7321..cccf6890fc596dda20286a1a8819846686639720 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 BooleanOrder;
+class BooleanVar;
 
-struct Constraint;
-typedef struct Constraint Constraint;
+class BooleanPredicate;
+class ASTNode;
 
-typedef struct BooleanOrder BooleanOrder;
-typedef struct BooleanVar BooleanVar;
-typedef struct BooleanLogic BooleanLogic;
-typedef struct BooleanPredicate BooleanPredicate;
 
-struct ASTNode;
-typedef struct ASTNode ASTNode;
 
-struct Boolean;
-typedef struct Boolean Boolean;
+class ElementFunction;
+class ElementSet;
+class ElementConst;
 
-struct IncrementalSolver;
-typedef struct IncrementalSolver IncrementalSolver;
-
-struct Set;
-typedef struct Set Set;
-typedef struct Set MutableSet;
+class FunctionOperator;
+class FunctionTable;
 
-typedef struct ElementFunction ElementFunction;
-typedef struct ElementSet ElementSet;
 
-struct Element;
-typedef struct Element Element;
 
-typedef struct FunctionOperator FunctionOperator;
-typedef struct FunctionTable FunctionTable;
+class PredicateTable;
+class PredicateOperator;
 
-struct Function;
-typedef struct Function Function;
 
-struct Predicate;
-typedef struct Predicate Predicate;
+class OrderPair;
 
-struct PredicateTable;
-typedef struct PredicateTable PredicateTable;
+class OrderElement;
+class IntegerEncodingRecord;
+class Transform;
+class Pass;
+class Transformer;
+class AnalysisData;
 
-struct PredicateOperator;
-typedef struct PredicateOperator PredicateOperator;
+class ElementEncoding;
+class FunctionEncoding;
+class OrderEncoding;
 
-struct Table;
-typedef struct Table Table;
+class OrderGraph;
+class OrderNodeKey;
+class OrderNode;
+class OrderEdge;
+class DOREdge;
 
-struct Order;
-typedef struct Order Order;
+class AutoTuner;
+class MultiTuner;
+class SearchTuner;
+class TunableSetting;
 
-struct OrderPair;
-typedef struct OrderPair OrderPair;
+class SerializeTuner;
 
-struct ElementEncoding;
-typedef struct ElementEncoding ElementEncoding;
+class TunableDesc;
 
-struct FunctionEncoding;
-typedef struct FunctionEncoding FunctionEncoding;
+class OrderResolver;
+class DecomposeOrderResolver;
 
-struct OrderEncoding;
-typedef struct OrderEncoding OrderEncoding;
+class EncodingGraph;
+class EncodingNode;
+class EncodingEdge;
+class EncodingSubGraph;
 
+struct IncrementalSolver;
+typedef struct IncrementalSolver IncrementalSolver;
 struct TableEntry;
 typedef struct TableEntry TableEntry;
-
-typedef unsigned int uint;
-typedef uint64_t VarType;
+typedef int TunableParam;
 #endif