Merging with branch master and fixing bugs
[satune.git] / src / classlist.h
1 /*      Copyright (c) 2015 Regents of the University of California
2  *
3  *      Author: Brian Demsky <bdemsky@uci.edu>
4  *
5  *      This program is free software; you can redistribute it and/or
6  *      modify it under the terms of the GNU General Public License
7  *      version 2 as published by the Free Software Foundation.
8  */
9
10 #ifndef CLASSLIST_H
11 #define CLASSLIST_H
12
13 #include "mymemory.h"
14 #include <inttypes.h>
15
16 class CSolver;
17 class SATEncoder;
18 class Boolean;
19 class BooleanOrder;
20 class BooleanVar;
21 class BooleanLogic;
22 class BooleanPredicate;
23 class ASTNode;
24 class Set;
25 class MutableSet;
26
27 class ElementFunction;
28 class ElementSet;
29 class ElementConst;
30 class Element;
31
32 class FunctionOperator;
33 class FunctionTable;
34 class Function;
35
36 class Predicate;
37 class PredicateTable;
38 class PredicateOperator;
39 class Table;
40 class Order;
41 class OrderPair;
42
43 class OrderElement;
44 class IntegerEncodingRecord;
45 class Transform;
46
47 class ElementEncoding;
48 class FunctionEncoding;
49 class OrderEncoding;
50
51 class OrderGraph;
52 class OrderNode;
53 class OrderEdge;
54
55 class AutoTuner;
56 class SearchTuner;
57 class TunableSetting;
58 class Pass;
59 class Transform;
60
61 struct IncrementalSolver;
62 typedef struct IncrementalSolver IncrementalSolver;
63
64 struct TableEntry;
65 typedef struct TableEntry TableEntry;
66
67 class Tuner;
68 class TunableDesc;
69
70 typedef int TunableParam;
71
72 typedef unsigned int uint;
73 typedef long int int64;
74 typedef uint64_t VarType;
75 #endif