1)core dump in regex for big strings 2) Boolean Var bugs 3) adding support for other...
[satune.git] / src / classlist.h
index f722a6e2331218e81535f978bd61a5eacdbddac9..d81b9bc9c6e683e8f45d8cc67df45f73dd392b45 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 Constraint;
-typedef struct Constraint Constraint;
+class BooleanOrder;
+class BooleanVar;
 
-typedef struct BooleanOrder BooleanOrder;
-typedef struct BooleanVar BooleanVar;
-typedef struct BooleanLogic BooleanLogic;
-typedef struct BooleanComp BooleanComp;
+class BooleanPredicate;
+class ASTNode;
 
-struct Boolean;
-typedef struct Boolean Boolean;
 
-struct IncrementalSolver;
-typedef struct IncrementalSolver IncrementalSolver;
 
-struct Set;
-typedef struct Set Set;
+class ElementFunction;
+class ElementSet;
+class ElementConst;
 
-typedef struct Set MutableSet;
+class FunctionOperator;
+class FunctionTable;
 
-struct Element;
-typedef struct Element Element;
 
-struct Function;
-typedef struct Function Function;
 
-struct Predicate;
-typedef struct Predicate Predicate;
+class PredicateTable;
+class PredicateOperator;
 
-struct Table;
-typedef struct Table Table;
 
-struct Order;
-typedef struct Order Order;
+class OrderPair;
 
-struct ElementEncoding;
-typedef struct ElementEncoding ElementEncoding;
+class OrderElement;
+class IntegerEncodingRecord;
+class Transform;
+class Pass;
+class Transformer;
+class AnalysisData;
 
-struct FunctionEncoding;
-typedef struct FunctionEncoding FunctionEncoding;
+class ElementEncoding;
+class FunctionEncoding;
+class OrderEncoding;
 
-struct TableEntry;
-typedef struct TableEntry TableEntry;
+class OrderGraph;
+class OrderNodeKey;
+class OrderNode;
+class OrderEdge;
+class DOREdge;
+
+class AutoTuner;
+class CompTuner;
+class SearchTuner;
+class TunableSetting;
 
+class SerializeTuner;
 
-typedef enum ArithOp ArithOp;
-typedef enum LogicOp LogicOp;
-typedef enum CompOp CompOp;
-typedef enum OrderType OrderType;
-typedef enum BooleanType BooleanType;
-typedef enum OverFlowBehavior OverFlowBehavior;
+class TunableDesc;
 
-typedef unsigned int uint;
-typedef uint64_t VarType;
+class OrderResolver;
+class DecomposeOrderResolver;
+
+class EncodingGraph;
+class EncodingNode;
+class EncodingEdge;
+class EncodingSubGraph;
+class SignatureEnc;
+class Signature;
+class ValuedSignature;
+class ElementSig;
+class SetSig;
+class BooleanSig;
+struct IncrementalSolver;
+typedef struct IncrementalSolver IncrementalSolver;
+struct TableEntry;
+typedef struct TableEntry TableEntry;
+typedef int TunableParam;
 #endif