X-Git-Url: http://plrg.eecs.uci.edu/git/?p=satune.git;a=blobdiff_plain;f=src%2Fclasslist.h;h=9616bc2e7154adc2f55eaba6bc6cab22169e9140;hp=8baae7a27304f84a7718d83683505a6a2eae0722;hb=4c58af641a877bb6d65769994c8fd57ecedbd22c;hpb=1a31b121641ff45d7ec3e272b7a0c476d2cb57e7 diff --git a/src/classlist.h b/src/classlist.h index 8baae7a..9616bc2 100644 --- a/src/classlist.h +++ b/src/classlist.h @@ -12,92 +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 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; class ElementFunction; class ElementSet; class ElementConst; -class Element; -typedef struct FunctionOperator FunctionOperator; -typedef struct FunctionTable FunctionTable; +class FunctionOperator; +class FunctionTable; -struct Function; -typedef struct Function Function; -struct Predicate; -typedef struct Predicate Predicate; -struct PredicateTable; -typedef struct PredicateTable PredicateTable; +class PredicateTable; +class PredicateOperator; -struct PredicateOperator; -typedef struct PredicateOperator PredicateOperator; -struct Table; -typedef struct Table Table; +class OrderPair; -struct Order; -typedef struct Order Order; +class OrderElement; +class IntegerEncodingRecord; +class Transform; +class Pass; +class Transformer; +class AnalysisData; -struct OrderPair; -typedef struct OrderPair OrderPair; +class ElementEncoding; +class FunctionEncoding; +class OrderEncoding; -struct OrderElement; -typedef struct OrderElement OrderElement; +class OrderGraph; +class OrderNodeKey; +class OrderNode; +class OrderEdge; +class DOREdge; -struct ElementEncoding; -typedef struct ElementEncoding ElementEncoding; +class AutoTuner; +class CompTuner; +class SearchTuner; +class TunableSetting; -struct FunctionEncoding; -typedef struct FunctionEncoding FunctionEncoding; +class SerializeTuner; -struct OrderEncoding; -typedef struct OrderEncoding OrderEncoding; +class TunableDesc; +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 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