Switch to vector class
[satune.git] / src / classlist.h
index f722a6e2331218e81535f978bd61a5eacdbddac9..32230d0b3e69399a17ff1ee706aacc0c769bb145 100644 (file)
 #define true 1
 #define false 0
 
-struct CSolver;
-typedef struct CSolver CSolver;
-
-struct Constraint;
-typedef struct Constraint Constraint;
-
-typedef struct BooleanOrder BooleanOrder;
-typedef struct BooleanVar BooleanVar;
-typedef struct BooleanLogic BooleanLogic;
-typedef struct BooleanComp BooleanComp;
-
-struct Boolean;
-typedef struct Boolean Boolean;
+class CSolver;
+struct SATEncoder;
+typedef struct SATEncoder SATEncoder;
+
+class Boolean;
+class BooleanOrder;
+class BooleanVar;
+class BooleanLogic;
+class BooleanPredicate;
+class ASTNode;
+class Set;
+class MutableSet;
+
+class ElementFunction;
+class ElementSet;
+class ElementConst;
+class Element;
+
+class FunctionOperator;
+class FunctionTable;
+class Function;
+
+class Predicate;
+class PredicateTable;
+class PredicateOperator;
+class Table;
+class Order;
 
 struct IncrementalSolver;
 typedef struct IncrementalSolver IncrementalSolver;
 
-struct Set;
-typedef struct Set Set;
-
-typedef struct Set MutableSet;
-
-struct Element;
-typedef struct Element Element;
-
-struct Function;
-typedef struct Function Function;
+struct OrderPair;
+typedef struct OrderPair OrderPair;
 
-struct Predicate;
-typedef struct Predicate Predicate;
-
-struct Table;
-typedef struct Table Table;
-
-struct Order;
-typedef struct Order Order;
+struct OrderElement;
+typedef struct OrderElement OrderElement;
 
 struct ElementEncoding;
 typedef struct ElementEncoding ElementEncoding;
@@ -59,17 +59,31 @@ typedef struct ElementEncoding ElementEncoding;
 struct FunctionEncoding;
 typedef struct FunctionEncoding FunctionEncoding;
 
+struct OrderEncoding;
+typedef struct OrderEncoding OrderEncoding;
+
 struct TableEntry;
 typedef struct TableEntry TableEntry;
 
+struct OrderGraph;
+typedef struct OrderGraph OrderGraph;
+
+struct OrderNode;
+typedef struct OrderNode OrderNode;
+
+struct OrderEdge;
+typedef struct OrderEdge OrderEdge;
+
+struct OrderEncoder;
+typedef struct OrderEncoder OrderEncoder;
 
-typedef enum ArithOp ArithOp;
-typedef enum LogicOp LogicOp;
-typedef enum CompOp CompOp;
-typedef enum OrderType OrderType;
-typedef enum BooleanType BooleanType;
-typedef enum OverFlowBehavior OverFlowBehavior;
+struct Tuner;
+typedef struct Tuner Tuner;
+struct TunableDesc;
+typedef struct TunableDesc TunableDesc;
+typedef int TunableParam;
 
 typedef unsigned int uint;
+typedef long int int64;
 typedef uint64_t VarType;
 #endif