X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=src%2Fclasslist.h;h=9616bc2e7154adc2f55eaba6bc6cab22169e9140;hb=f2bb71e84525d9ebc1841d5c2867d8b48c070cd5;hp=4f44aff688db2bfe1578482b5f327dd647837721;hpb=0073b37bd741b59fe79857958d8276fc9128db0b;p=satune.git diff --git a/src/classlist.h b/src/classlist.h index 4f44aff..9616bc2 100644 --- a/src/classlist.h +++ b/src/classlist.h @@ -12,75 +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; -typedef struct BooleanOrder BooleanOrder; -typedef struct BooleanVar BooleanVar; -typedef struct BooleanLogic BooleanLogic; -typedef struct BooleanPredicate BooleanPredicate; +class BooleanOrder; +class BooleanVar; -struct ASTNode; -typedef struct ASTNode ASTNode; +class BooleanPredicate; +class ASTNode; -struct Boolean; -typedef struct Boolean Boolean; -struct IncrementalSolver; -typedef struct IncrementalSolver IncrementalSolver; -struct Set; -typedef struct Set Set; -typedef struct Set MutableSet; +class ElementFunction; +class ElementSet; +class ElementConst; -typedef struct ElementFunction ElementFunction; -typedef struct ElementSet ElementSet; +class FunctionOperator; +class FunctionTable; -struct Element; -typedef struct Element Element; -typedef struct FunctionOperator FunctionOperator; -typedef struct FunctionTable FunctionTable; -struct Function; -typedef struct Function Function; +class PredicateTable; +class PredicateOperator; -struct Predicate; -typedef struct Predicate Predicate; -struct PredicateTable; -typedef struct PredicateTable PredicateTable; +class OrderPair; -struct PredicateOperator; -typedef struct PredicateOperator PredicateOperator; +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 OrderPair; -typedef struct OrderPair OrderPair; +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