More of Tuning Framework
[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
45 class ElementEncoding;
46 class FunctionEncoding;
47 class OrderEncoding;
48
49 class OrderGraph;
50 class OrderNode;
51 class OrderEdge;
52
53 class AutoTuner;
54 class SearchTuner;
55 class TunableSetting;
56
57 struct IncrementalSolver;
58 typedef struct IncrementalSolver IncrementalSolver;
59
60 struct TableEntry;
61 typedef struct TableEntry TableEntry;
62
63 class Tuner;
64 class TunableDesc;
65
66 typedef int TunableParam;
67
68 typedef unsigned int uint;
69 typedef long int int64;
70 typedef uint64_t VarType;
71 #endif