fixing elementSet and TablePredicate
[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 #define bool int
16 #define true 1
17 #define false 0
18
19 struct CSolver;
20 typedef struct CSolver CSolver;
21 struct SATEncoder;
22 typedef struct SATEncoder SATEncoder;
23
24
25 struct Constraint;
26 typedef struct Constraint Constraint;
27
28 typedef struct BooleanOrder BooleanOrder;
29 typedef struct BooleanVar BooleanVar;
30 typedef struct BooleanLogic BooleanLogic;
31 typedef struct BooleanPredicate BooleanPredicate;
32
33 struct Boolean;
34 typedef struct Boolean Boolean;
35
36 struct IncrementalSolver;
37 typedef struct IncrementalSolver IncrementalSolver;
38
39 struct Set;
40 typedef struct Set Set;
41 typedef struct Set MutableSet;
42
43 typedef struct ElementFunction ElementFunction;
44 typedef struct ElementSet ElementSet;
45
46 struct Element;
47 typedef struct Element Element;
48
49 typedef struct FunctionOperator FunctionOperator;
50 typedef struct FunctionTable FunctionTable;
51
52 struct Function;
53 typedef struct Function Function;
54
55 struct Predicate;
56 typedef struct Predicate Predicate;
57
58 struct Table;
59 typedef struct Table Table;
60
61 struct Order;
62 typedef struct Order Order;
63
64 struct ElementEncoding;
65 typedef struct ElementEncoding ElementEncoding;
66
67 struct FunctionEncoding;
68 typedef struct FunctionEncoding FunctionEncoding;
69
70 struct OrderEncoding;
71 typedef struct OrderEncoding OrderEncoding;
72
73 struct TableEntry;
74 typedef struct TableEntry TableEntry;
75
76 typedef unsigned int uint;
77 typedef uint64_t VarType;
78 #endif