X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=src%2Fclasslist.h;h=fee6d9bc7c14359893b61b1724d5e19fdc63ecc4;hb=47e824884895ac005fa3cc172e7093229300a71b;hp=237d529be962f45906e0fc00918247152f05e74b;hpb=c507619d06bc6fbddc5fc26016be9bb47daa0ae0;p=satune.git diff --git a/src/classlist.h b/src/classlist.h index 237d529..fee6d9b 100644 --- a/src/classlist.h +++ b/src/classlist.h @@ -12,64 +12,66 @@ #include "mymemory.h" #include -#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 BooleanComp BooleanComp; -struct Boolean; -typedef struct Boolean Boolean; -struct IncrementalSolver; -typedef struct IncrementalSolver IncrementalSolver; +class ElementFunction; +class ElementSet; +class ElementConst; + +class FunctionOperator; +class FunctionTable; + -struct Set; -typedef struct Set Set; -typedef struct Set MutableSet; -struct Element; -typedef struct Element Element; +class PredicateTable; +class PredicateOperator; -typedef struct FunctionOperator FunctionOperator; -typedef struct FunctionTable FunctionTable; -struct Function; -typedef struct Function Function; +class OrderPair; -struct Predicate; -typedef struct Predicate Predicate; +class OrderElement; +class IntegerEncodingRecord; +class Transform; +class Pass; +class Transformer; +class AnalysisData; -struct Table; -typedef struct Table Table; +class ElementEncoding; +class FunctionEncoding; +class OrderEncoding; -struct Order; -typedef struct Order Order; +class OrderGraph; +class OrderNodeKey; +class OrderNode; +class OrderEdge; +class DOREdge; -struct ElementEncoding; -typedef struct ElementEncoding ElementEncoding; +class AutoTuner; +class SearchTuner; +class TunableSetting; -struct FunctionEncoding; -typedef struct FunctionEncoding FunctionEncoding; +class TunableDesc; -struct OrderEncoding; -typedef struct OrderEncoding OrderEncoding; +class OrderResolver; +class DecomposeOrderResolver; +class EncodingGraph; +class EncodingNode; +class EncodingEdge; + +struct IncrementalSolver; +typedef struct IncrementalSolver IncrementalSolver; struct TableEntry; typedef struct TableEntry TableEntry; - -typedef unsigned int uint; -typedef uint64_t VarType; +typedef int TunableParam; #endif