Merge branch 'master' of ssh://demsky.eecs.uci.edu/home/git/constraint_compiler into...
[satune.git] / src / csolver.h
1 #ifndef CSOLVER_H
2 #define CSOLVER_H
3 #include "classes.h"
4 #include "ops.h"
5 #include "corestructs.h"
6 #include "asthash.h"
7
8 class CSolver {
9 public:
10         CSolver();
11         ~CSolver();
12
13         /** This function creates a set containing the elements passed in the array. */
14         Set *createSet(VarType type, uint64_t *elements, uint num);
15
16         /** This function creates a set from lowrange to highrange (inclusive). */
17
18         Set *createRangeSet(VarType type, uint64_t lowrange, uint64_t highrange);
19
20         Element *createRangeVar(VarType type, uint64_t lowrange, uint64_t highrange);
21                 
22         /** This function creates a mutable set. */
23
24         MutableSet *createMutableSet(VarType type);
25
26         /** This function adds a new item to a set. */
27
28         void addItem(MutableSet *set, uint64_t element);
29
30         /** This function adds a new unique item to the set and returns it.
31             This function cannot be used in conjunction with manually adding
32             items to the set. */
33
34         uint64_t createUniqueItem(MutableSet *set);
35
36         /** This function creates an element variable over a set. */
37
38         Element *getElementVar(Set *set);
39
40         /** This function creates an element constrant. */
41         Element *getElementConst(VarType type, uint64_t value);
42
43         Boolean *getBooleanTrue();
44
45         Boolean *getBooleanFalse();
46         
47         /** This function creates a boolean variable. */
48
49         Boolean *getBooleanVar(VarType type);
50
51         /** This function creates a function operator. */
52
53         Function *createFunctionOperator(ArithOp op, Set **domain, uint numDomain, Set *range,
54                                                                                                                                          OverFlowBehavior overflowbehavior);
55
56         /** This function creates a predicate operator. */
57
58         Predicate *createPredicateOperator(CompOp op, Set **domain, uint numDomain);
59
60         Predicate *createPredicateTable(Table *table, UndefinedBehavior behavior);
61
62         /** This function creates an empty instance table.*/
63
64         Table *createTable(Set **domains, uint numDomain, Set *range);
65
66         Table *createTableForPredicate(Set **domains, uint numDomain);
67         /** This function adds an input output relation to a table. */
68
69         void addTableEntry(Table *table, uint64_t *inputs, uint inputSize, uint64_t result);
70
71         /** This function converts a completed table into a function. */
72
73         Function *completeTable(Table *, UndefinedBehavior behavior);
74
75         /** This function applies a function to the Elements in its input. */
76
77         Element *applyFunction(Function *function, Element **array, uint numArrays, Boolean *overflowstatus);
78
79         /** This function applies a predicate to the Elements in its input. */
80
81         Boolean *applyPredicateTable(Predicate *predicate, Element **inputs, uint numInputs, Boolean *undefinedStatus);
82
83         Boolean *applyPredicate(Predicate *predicate, Element **inputs, uint numInputs);
84
85         /** This function applies a logical operation to the Booleans in its input. */
86
87         Boolean *applyLogicalOperation(LogicOp op, Boolean **array, uint asize);
88
89                 /** This function applies a logical operation to the Booleans in its input. */
90
91         Boolean *applyLogicalOperation(LogicOp op, Boolean * arg1, Boolean * arg2);
92
93         /** This function applies a logical operation to the Booleans in its input. */
94
95         Boolean *applyLogicalOperation(LogicOp op, Boolean *arg);
96
97         /** This function adds a boolean constraint to the set of constraints
98             to be satisfied */
99
100         void addConstraint(Boolean *constraint);
101
102         /** This function instantiates an order of type type over the set set. */
103         Order *createOrder(OrderType type, Set *set);
104
105         /** This function instantiates a boolean on two items in an order. */
106         Boolean *orderConstraint(Order *order, uint64_t first, uint64_t second);
107
108         /** When everything is done, the client calls this function and then csolver starts to encode*/
109         int solve();
110
111         /** After getting the solution from the SAT solver, client can get the value of an element via this function*/
112         uint64_t getElementValue(Element *element);
113
114         /** After getting the solution from the SAT solver, client can get the value of a boolean via this function*/
115         bool getBooleanValue(Boolean *boolean);
116
117         HappenedBefore getOrderConstraintValue(Order *order, uint64_t first, uint64_t second);
118
119         bool isTrue(Boolean *b);
120         bool isFalse(Boolean *b);
121         
122         void setUnSAT() { unsat = true; }
123
124         bool isUnSAT() { return unsat; }
125
126         Vector<Order *> *getOrders() { return &allOrders;}
127
128         Tuner *getTuner() { return tuner; }
129         Transformer* getTransformer() {return transformer;}
130         
131         SetIteratorBoolean *getConstraints() { return constraints.iterator(); }
132
133         SATEncoder *getSATEncoder() {return satEncoder;}
134
135         void replaceBooleanWithTrue(Boolean *bexpr);
136         void replaceBooleanWithFalse(Boolean *bexpr);
137         void replaceBooleanWithBoolean(Boolean *oldb, Boolean *newb);
138         CSolver *clone();
139         void autoTune(uint budget);
140
141         void setTransformer(Transformer * _transformer) {  transformer = _transformer; }
142         void setTuner(Tuner * _tuner) { tuner = _tuner; }
143         long long getElapsedTime() { return elapsedTime; }
144         long long getEncodeTime();
145         long long getSolveTime();
146         
147         CMEMALLOC;
148
149 private:
150         void handleXORFalse(BooleanLogic *bexpr, Boolean *child);
151         void handleIMPLIESTrue(BooleanLogic *bexpr, Boolean *child);
152         void handleIMPLIESFalse(BooleanLogic *bexpr, Boolean *child);
153         void handleANDTrue(BooleanLogic *bexpr, Boolean *child);
154         void handleORFalse(BooleanLogic *bexpr, Boolean *child);
155
156         /** This is a vector of constraints that must be satisfied. */
157         HashsetBoolean constraints;
158
159         /** This is a vector of all boolean structs that we have allocated. */
160         Vector<Boolean *> allBooleans;
161
162         /** This is a vector of all set structs that we have allocated. */
163         Vector<Set *> allSets;
164
165         /** This is a vector of all element structs that we have allocated. */
166         Vector<Element *> allElements;
167
168         /** This is a vector of all predicate structs that we have allocated. */
169         Vector<Predicate *> allPredicates;
170
171         /** This is a vector of all table structs that we have allocated. */
172         Vector<Table *> allTables;
173
174         /** This is a vector of all order structs that we have allocated. */
175         Vector<Order *> allOrders;
176
177         /** This is a vector of all function structs that we have allocated. */
178         Vector<Function *> allFunctions;
179
180         Boolean * boolTrue;
181         Boolean * boolFalse;
182         
183         /** These two tables are used for deduplicating entries. */
184         BooleanMatchMap boolMap;
185         ElementMatchMap elemMap;
186         
187         SATEncoder *satEncoder;
188         bool unsat;
189         Tuner *tuner;
190         Transformer* transformer;
191         long long elapsedTime;
192 };
193 #endif