Small edit
[satune.git] / src / classlist.h
index 4f44aff688db2bfe1578482b5f327dd647837721..e8ab113ab24e360a552c159d3a4c4d9d5b0c4586 100644 (file)
 
 #include "mymemory.h"
 #include <inttypes.h>
-#define bool int
-#define true 1
-#define false 0
+#include "classes.h"
 
-struct CSolver;
-typedef struct CSolver CSolver;
-struct SATEncoder;
-typedef struct SATEncoder SATEncoder;
 
-typedef struct BooleanOrder BooleanOrder;
-typedef struct BooleanVar BooleanVar;
-typedef struct BooleanLogic BooleanLogic;
-typedef struct BooleanPredicate BooleanPredicate;
+class BooleanOrder;
+class BooleanVar;
 
-struct ASTNode;
-typedef struct ASTNode ASTNode;
+class BooleanPredicate;
+class ASTNode;
 
-struct Boolean;
-typedef struct Boolean Boolean;
 
-struct IncrementalSolver;
-typedef struct IncrementalSolver IncrementalSolver;
-
-struct Set;
-typedef struct Set Set;
-typedef struct Set MutableSet;
 
-typedef struct ElementFunction ElementFunction;
-typedef struct ElementSet ElementSet;
+class ElementFunction;
+class ElementSet;
+class ElementConst;
 
-struct Element;
-typedef struct Element Element;
+class FunctionOperator;
+class FunctionTable;
 
-typedef struct FunctionOperator FunctionOperator;
-typedef struct FunctionTable FunctionTable;
 
-struct Function;
-typedef struct Function Function;
 
-struct Predicate;
-typedef struct Predicate Predicate;
+class PredicateTable;
+class PredicateOperator;
 
-struct PredicateTable;
-typedef struct PredicateTable PredicateTable;
 
-struct PredicateOperator;
-typedef struct PredicateOperator PredicateOperator;
+class OrderPair;
 
-struct Table;
-typedef struct Table Table;
+class OrderElement;
+class IntegerEncodingRecord;
+class Transform;
+class Pass;
+class Transformer;
+class AnalysisData;
 
-struct Order;
-typedef struct Order Order;
+class ElementEncoding;
+class FunctionEncoding;
+class OrderEncoding;
 
-struct OrderPair;
-typedef struct OrderPair OrderPair;
+class OrderGraph;
+class OrderNode;
+class OrderEdge;
 
-struct ElementEncoding;
-typedef struct ElementEncoding ElementEncoding;
+class AutoTuner;
+class SearchTuner;
+class TunableSetting;
 
-struct FunctionEncoding;
-typedef struct FunctionEncoding FunctionEncoding;
-
-struct OrderEncoding;
-typedef struct OrderEncoding OrderEncoding;
+class TunableDesc;
 
+struct IncrementalSolver;
+typedef struct IncrementalSolver IncrementalSolver;
 struct TableEntry;
 typedef struct TableEntry TableEntry;
+typedef int TunableParam;
 
-typedef unsigned int uint;
-typedef uint64_t VarType;
 #endif