Change dependences
[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 #include "classes.h"
16
17
18 class BooleanOrder;
19 class BooleanVar;
20
21 class BooleanPredicate;
22 class ASTNode;
23
24
25
26 class ElementFunction;
27 class ElementSet;
28 class ElementConst;
29
30 class FunctionOperator;
31 class FunctionTable;
32
33
34
35 class PredicateTable;
36 class PredicateOperator;
37
38
39 class OrderPair;
40
41 class OrderElement;
42 class IntegerEncodingRecord;
43 class Transform;
44 class Pass;
45
46 class ElementEncoding;
47 class FunctionEncoding;
48 class OrderEncoding;
49
50 class OrderGraph;
51 class OrderNode;
52 class OrderEdge;
53
54 class AutoTuner;
55 class SearchTuner;
56 class TunableSetting;
57
58 class TunableDesc;
59
60 struct IncrementalSolver;
61 typedef struct IncrementalSolver IncrementalSolver;
62
63 struct TableEntry;
64 typedef struct TableEntry TableEntry;
65
66 typedef int TunableParam;
67 typedef unsigned int uint;
68 typedef long int int64;
69
70 #endif