92cc697f4f14c007e1c198337e06c578866f10f4
[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 struct SATEncoder;
18 typedef struct SATEncoder SATEncoder;
19
20 class Boolean;
21 class BooleanOrder;
22 class BooleanVar;
23 class BooleanLogic;
24 class BooleanPredicate;
25 class ASTNode;
26 class Set;
27 class MutableSet;
28
29 class ElementFunction;
30 class ElementSet;
31 class ElementConst;
32 class Element;
33
34 class FunctionOperator;
35 class FunctionTable;
36 class Function;
37
38 class Predicate;
39 class PredicateTable;
40 class PredicateOperator;
41 class Table;
42 class Order;
43 class OrderPair;
44
45 struct IncrementalSolver;
46 typedef struct IncrementalSolver IncrementalSolver;
47
48
49
50 struct OrderElement;
51 typedef struct OrderElement OrderElement;
52
53 class ElementEncoding;
54 class FunctionEncoding;
55 class OrderEncoding;
56
57 struct TableEntry;
58 typedef struct TableEntry TableEntry;
59
60 struct OrderGraph;
61 typedef struct OrderGraph OrderGraph;
62
63 struct OrderNode;
64 typedef struct OrderNode OrderNode;
65
66 struct OrderEdge;
67 typedef struct OrderEdge OrderEdge;
68
69 struct OrderEncoder;
70 typedef struct OrderEncoder OrderEncoder;
71
72 struct Tuner;
73 typedef struct Tuner Tuner;
74 struct TunableDesc;
75 typedef struct TunableDesc TunableDesc;
76 typedef int TunableParam;
77
78 typedef unsigned int uint;
79 typedef long int int64;
80 typedef uint64_t VarType;
81 #endif