X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=src%2Fclasslist.h;h=9616bc2e7154adc2f55eaba6bc6cab22169e9140;hb=85278f8212fb2d60c0e800e05ae3fae499f8e3f4;hp=c5eca510e16fe8afd575244169685cbcfad4e47e;hpb=34fa4116c982bb18c94da833ab209b5f3cce92b8;p=satune.git diff --git a/src/classlist.h b/src/classlist.h index c5eca51..9616bc2 100644 --- a/src/classlist.h +++ b/src/classlist.h @@ -12,79 +12,75 @@ #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 BooleanPredicate BooleanPredicate; -struct ASTNode; -typedef struct ASTNode ASTNode; -struct Boolean; -typedef struct Boolean Boolean; +class ElementFunction; +class ElementSet; +class ElementConst; -struct IncrementalSolver; -typedef struct IncrementalSolver IncrementalSolver; +class FunctionOperator; +class FunctionTable; -struct Set; -typedef struct Set Set; -typedef struct Set MutableSet; -typedef struct ElementFunction ElementFunction; -typedef struct ElementSet ElementSet; -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 PredicateTable; -typedef struct PredicateTable PredicateTable; +class ElementEncoding; +class FunctionEncoding; +class OrderEncoding; -struct PredicateOperator; -typedef struct PredicateOperator PredicateOperator; +class OrderGraph; +class OrderNodeKey; +class OrderNode; +class OrderEdge; +class DOREdge; -struct Table; -typedef struct Table Table; +class AutoTuner; +class CompTuner; +class SearchTuner; +class TunableSetting; -struct Order; -typedef struct Order Order; +class SerializeTuner; -struct ElementEncoding; -typedef struct ElementEncoding ElementEncoding; +class TunableDesc; -struct FunctionEncoding; -typedef struct FunctionEncoding FunctionEncoding; - -struct OrderEncoding; -typedef struct OrderEncoding OrderEncoding; +class OrderResolver; +class DecomposeOrderResolver; +class EncodingGraph; +class EncodingNode; +class EncodingEdge; +class EncodingSubGraph; +class SignatureEnc; +class Signature; +class ValuedSignature; +class AlloyElementSig; +class AlloySetSig; +class AlloyBoolSig; +struct IncrementalSolver; +typedef struct IncrementalSolver IncrementalSolver; struct TableEntry; typedef struct TableEntry TableEntry; - -struct Struct; -typedef struct Struct Struct; - -typedef unsigned int uint; -typedef uint64_t VarType; +typedef int TunableParam; #endif