edits
[satune.git] / src / classlist.h
index 3c7d071a66221d25dffd679d5465284efe7cc769..5d748a699b40a047d451ab254fbd2097469fe0a9 100644 (file)
@@ -21,54 +21,39 @@ typedef struct CSolver CSolver;
 struct SATEncoder;
 typedef struct SATEncoder SATEncoder;
 
-
-struct Constraint;
-typedef struct Constraint Constraint;
-
-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 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;
-
-typedef struct ElementFunction ElementFunction;
-typedef struct ElementSet ElementSet;
-
-struct Element;
-typedef struct Element Element;
-
-typedef struct FunctionOperator FunctionOperator;
-typedef struct FunctionTable FunctionTable;
+class Set;
+typedef class Set MutableSet;
 
-struct Function;
-typedef struct Function Function;
+class ElementFunction;
+class ElementSet;
+class ElementConst;
+class Element;
 
-struct Predicate;
-typedef struct Predicate Predicate;
+class FunctionOperator;
+class FunctionTable;
+class Function;
 
-struct PredicateTable;
-typedef struct PredicateTable PredicateTable;
+class Predicate;
+class PredicateTable;
+class PredicateOperator;
+class Table;
+class Order;
 
-struct PredicateOperator;
-typedef struct PredicateOperator PredicateOperator;
+struct OrderPair;
+typedef struct OrderPair OrderPair;
 
-struct Table;
-typedef struct Table Table;
-
-struct Order;
-typedef struct Order Order;
+struct OrderElement;
+typedef struct OrderElement OrderElement;
 
 struct ElementEncoding;
 typedef struct ElementEncoding ElementEncoding;
@@ -82,6 +67,25 @@ 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;
+
+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