dd97e086c3675e2599969bae8beb5bb406969625
[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
55 struct IncrementalSolver;
56 typedef struct IncrementalSolver IncrementalSolver;
57
58 struct TableEntry;
59 typedef struct TableEntry TableEntry;
60
61 class Tuner;
62 class TunableDesc;
63
64 typedef int TunableParam;
65
66 typedef unsigned int uint;
67 typedef long int int64;
68 typedef uint64_t VarType;
69 #endif