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