X-Git-Url: http://plrg.eecs.uci.edu/git/?p=satune.git;a=blobdiff_plain;f=src%2Fclasslist.h;h=9616bc2e7154adc2f55eaba6bc6cab22169e9140;hp=d32af3faa81e5a714d502675d34038e31eae8d4c;hb=4c58af641a877bb6d65769994c8fd57ecedbd22c;hpb=864af40e17218f8093ce2357c27a4fc4ff02bc24 diff --git a/src/classlist.h b/src/classlist.h index d32af3f..9616bc2 100644 --- a/src/classlist.h +++ b/src/classlist.h @@ -12,73 +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 Boolean; -typedef struct Boolean Boolean; -struct IncrementalSolver; -typedef struct IncrementalSolver IncrementalSolver; +class ElementFunction; +class ElementSet; +class ElementConst; -struct Set; -typedef struct Set Set; -typedef struct Set MutableSet; +class FunctionOperator; +class FunctionTable; -typedef struct ElementFunction ElementFunction; -typedef struct ElementSet ElementSet; -struct Element; -typedef struct Element Element; -typedef struct FunctionOperator FunctionOperator; -typedef struct FunctionTable FunctionTable; +class PredicateTable; +class PredicateOperator; -struct Function; -typedef struct Function Function; -struct Predicate; -typedef struct Predicate Predicate; +class OrderPair; -struct PredicateTable; -typedef struct PredicateTable PredicateTable; +class OrderElement; +class IntegerEncodingRecord; +class Transform; +class Pass; +class Transformer; +class AnalysisData; -struct PredicateOperator; -typedef struct PredicateOperator PredicateOperator; +class ElementEncoding; +class FunctionEncoding; +class OrderEncoding; -struct Table; -typedef struct Table Table; +class OrderGraph; +class OrderNodeKey; +class OrderNode; +class OrderEdge; +class DOREdge; -struct Order; -typedef struct Order Order; +class AutoTuner; +class CompTuner; +class SearchTuner; +class TunableSetting; -struct ElementEncoding; -typedef struct ElementEncoding ElementEncoding; +class SerializeTuner; -struct FunctionEncoding; -typedef struct FunctionEncoding FunctionEncoding; +class TunableDesc; -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; - -typedef unsigned int uint; -typedef uint64_t VarType; +typedef int TunableParam; #endif