X-Git-Url: http://plrg.eecs.uci.edu/git/?p=satune.git;a=blobdiff_plain;f=src%2Fclasslist.h;h=fee6d9bc7c14359893b61b1724d5e19fdc63ecc4;hp=3c7d071a66221d25dffd679d5465284efe7cc769;hb=47e824884895ac005fa3cc172e7093229300a71b;hpb=4b6277a81c50609abbe7b19a49e641a2d189060a diff --git a/src/classlist.h b/src/classlist.h index 3c7d071..fee6d9b 100644 --- a/src/classlist.h +++ b/src/classlist.h @@ -12,76 +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 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; - -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 SearchTuner; +class TunableSetting; -struct ElementEncoding; -typedef struct ElementEncoding ElementEncoding; +class TunableDesc; -struct FunctionEncoding; -typedef struct FunctionEncoding FunctionEncoding; +class OrderResolver; +class DecomposeOrderResolver; -struct OrderEncoding; -typedef struct OrderEncoding OrderEncoding; +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