Merging + fixing memory bugs
[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 #include "solver_interface.h"
8 #include "common.h"
9
10 class CSolver {
11 public:
12         CSolver();
13         ~CSolver();
14         void resetSolver();
15         /** This function creates a set containing the elements passed in the array. */
16         Set *createSet(VarType type, uint64_t *elements, uint num);
17
18         /** This function creates a set from lowrange to highrange (inclusive). */
19
20         Set *createRangeSet(VarType type, uint64_t lowrange, uint64_t highrange);
21
22         bool itemExistInSet(Set *set, uint64_t item);
23
24         VarType getSetVarType(Set *set);
25
26         Element *createRangeVar(VarType type, uint64_t lowrange, uint64_t highrange);
27
28         /** This function creates a mutable set.
29          * Note: You should use addItem for adding new item to Mutable sets, and
30          * at the end, you should call finalizeMutableSet!
31          */
32
33         MutableSet *createMutableSet(VarType type);
34
35         /** This function adds a new item to a set. */
36
37         //Deprecating this unless we need it...
38         void addItem(MutableSet *set, uint64_t element);
39
40         /** This function adds a new unique item to the set and returns it.
41             This function cannot be used in conjunction with manually adding
42             items to the set. */
43
44         uint64_t createUniqueItem(MutableSet *set);
45
46         /**
47          * Freeze and finalize the mutableSet ...
48          */
49         void finalizeMutableSet(MutableSet *set);
50
51         /** This function creates an element variable over a set. */
52
53         Element *getElementVar(Set *set);
54
55         /** This function creates an element constrant. */
56         Element *getElementConst(VarType type, uint64_t value);
57
58         Set *getElementRange (Element *element);
59
60         void mustHaveValue(Element *element);
61
62         BooleanEdge getBooleanTrue();
63
64         BooleanEdge getBooleanFalse();
65
66         /** This function creates a boolean variable. */
67
68         BooleanEdge getBooleanVar(VarType type);
69
70         /** This function creates a function operator. */
71
72         Function *createFunctionOperator(ArithOp op, Set *range,
73                                                                                                                                          OverFlowBehavior overflowbehavior);
74
75         /** This function creates a predicate operator. */
76
77         Predicate *createPredicateOperator(CompOp op);
78
79         Predicate *createPredicateTable(Table *table, UndefinedBehavior behavior);
80
81         /** This function creates an empty instance table.*/
82
83         Table *createTable(Set *range);
84
85         Table *createTableForPredicate();
86         /** This function adds an input output relation to a table. */
87
88         void addTableEntry(Table *table, uint64_t *inputs, uint inputSize, uint64_t result);
89
90         /** This function converts a completed table into a function. */
91
92         Function *completeTable(Table *, UndefinedBehavior behavior);
93
94         /** This function applies a function to the Elements in its input. */
95
96         Element *applyFunction(Function *function, Element **array, uint numArrays, BooleanEdge overflowstatus);
97
98         /** This function applies a predicate to the Elements in its input. */
99
100         BooleanEdge applyPredicateTable(Predicate *predicate, Element **inputs, uint numInputs, BooleanEdge undefinedStatus);
101
102         BooleanEdge applyPredicate(Predicate *predicate, Element **inputs, uint numInputs);
103
104         /** This exactly one element of array can be true! (i.e. a1 + a2 + a3 + ... + an = 1)*/
105         BooleanEdge applyExactlyOneConstraint (BooleanEdge *array, uint asize);
106
107         /** This function applies a logical operation to the Booleans in its input. */
108
109         BooleanEdge applyLogicalOperation(LogicOp op, BooleanEdge *array, uint asize);
110
111         /** This function applies a logical operation to the Booleans in its input. */
112
113         BooleanEdge applyLogicalOperation(LogicOp op, BooleanEdge arg1, BooleanEdge arg2);
114
115         /** This function applies a logical operation to the Booleans in its input. */
116
117         BooleanEdge applyLogicalOperation(LogicOp op, BooleanEdge arg);
118
119         /** This function adds a boolean constraint to the set of constraints
120             to be satisfied */
121
122         void addConstraint(BooleanEdge constraint);
123
124         /** This function instantiates an order of type type over the set set. */
125         Order *createOrder(OrderType type, Set *set);
126
127         /** This function instantiates a boolean on two items in an order. */
128         BooleanEdge orderConstraint(Order *order, uint64_t first, uint64_t second);
129
130         /** When everything is done, the client calls this function and then csolver starts to encode*/
131         int solve();
132         /**
133          * Incremental Solving for SATUNE.
134          * It only supports incremental solving for elements!
135          * No support for BooleanVar, BooleanOrder or using interpreters
136          * @return
137          */
138         int solveIncremental();
139
140         /** After getting the solution from the SAT solver, client can get the value of an element via this function*/
141         uint64_t getElementValue(Element *element);
142
143         void freezeElement(Element *e);
144         void turnoffOptimizations(){optimizationsOff = true;}
145         /** After getting the solution from the SAT solver, client can get the value of a boolean via this function*/
146         bool getBooleanValue(BooleanEdge boolean);
147
148         bool getOrderConstraintValue(Order *order, uint64_t first, uint64_t second);
149
150         bool isTrue(BooleanEdge b);
151         bool isFalse(BooleanEdge b);
152
153         void setUnSAT() { model_print("Setting UNSAT %%%%%%\n"); unsat = true; }
154         void setSatSolverTimeout(long seconds) { satsolverTimeout = seconds;}
155         bool isUnSAT() { return unsat; }
156         bool isBooleanVarUsed() {return booleanVarUsed;}
157         void printConstraint(BooleanEdge boolean);
158         void printConstraints();
159
160         Vector<Order *> *getOrders() { return &allOrders;}
161         HashsetOrder *getActiveOrders() { return &activeOrders;}
162
163         Tuner *getTuner() { return tuner; }
164
165         SetIteratorBooleanEdge *getConstraints() { return constraints.iterator(); }
166         bool isConstraintEncoded(BooleanEdge be) { return encodedConstraints.contains(be);}
167         void addEncodedConstraint(BooleanEdge be) {encodedConstraints.add(be);}
168
169         SATEncoder *getSATEncoder() {return satEncoder;}
170
171         void replaceBooleanWithTrue(BooleanEdge bexpr);
172         void replaceBooleanWithTrueNoRemove(BooleanEdge bexpr);
173         void replaceBooleanWithFalseNoRemove(BooleanEdge bexpr);
174         void replaceBooleanWithFalse(BooleanEdge bexpr);
175         void replaceBooleanWithBoolean(BooleanEdge oldb, BooleanEdge newb);
176         CSolver *clone();
177         void serialize();
178         static CSolver *deserialize(const char *file, InterpreterType itype = SATUNE);
179         void autoTune(uint budget);
180         void inferFixedOrders();
181         void inferFixedOrder(Order *order);
182         void setInterpreter(InterpreterType type);
183         bool useInterpreter() {return interpreter != NULL;}
184         void setTuner(Tuner *_tuner) { tuner = _tuner; }
185         long long getElapsedTime() { return elapsedTime; }
186         long long getEncodeTime();
187         long long getSolveTime();
188         long getSatSolverTimeout() { return satsolverTimeout;}
189         bool isIncrementalMode() {return incrementalMode;}
190         void freezeElementsVariables();
191         CMEMALLOC;
192
193 private:
194         void handleIFFTrue(BooleanLogic *bexpr, BooleanEdge child);
195         void handleANDTrue(BooleanLogic *bexpr, BooleanEdge child);
196         void handleFunction(ElementFunction *ef, BooleanEdge child);
197
198         //These two functions are helpers if the client has a pointer to a
199         //Boolean object that we have since replaced
200         BooleanEdge rewriteLogicalOperation(LogicOp op, BooleanEdge *array, uint asize);
201         BooleanEdge doRewrite(BooleanEdge b);
202         /** This is a vector of constraints that must be satisfied. */
203         HashsetBooleanEdge constraints;
204         HashsetBooleanEdge encodedConstraints;
205
206         /** This is a vector of all boolean structs that we have allocated. */
207         Vector<Boolean *> allBooleans;
208
209         /** This is a vector of all set structs that we have allocated. */
210         Vector<Set *> allSets;
211
212         /** This is a vector of all element structs that we have allocated. */
213         Vector<Element *> allElements;
214
215         /** This is a vector of all predicate structs that we have allocated. */
216         Vector<Predicate *> allPredicates;
217
218         /** This is a vector of all table structs that we have allocated. */
219         Vector<Table *> allTables;
220
221         /** This is a vector of all order structs that we have allocated. */
222         Vector<Order *> allOrders;
223
224         HashsetOrder activeOrders;
225
226         /** This is a vector of all function structs that we have allocated. */
227         Vector<Function *> allFunctions;
228
229         BooleanEdge boolTrue;
230         BooleanEdge boolFalse;
231
232         /** These two tables are used for deduplicating entries. */
233         BooleanMatchMap boolMap;
234         ElementMatchMap elemMap;
235
236         SATEncoder *satEncoder;
237         bool unsat;
238         bool booleanVarUsed;
239         bool incrementalMode;
240         bool optimizationsOff;
241         Tuner *tuner;
242         long long elapsedTime;
243         long satsolverTimeout;
244         Interpreter *interpreter;
245         bool noOptimization;
246         friend class ElementOpt;
247         friend class VarOrderingOpt;
248 };
249
250 inline CompOp flipOp(CompOp op) {
251         switch (op) {
252         case SATC_EQUALS:
253                 return SATC_EQUALS;
254         case SATC_LT:
255                 return SATC_GT;
256         case SATC_GT:
257                 return SATC_LT;
258         case SATC_LTE:
259                 return SATC_GTE;
260         case SATC_GTE:
261                 return SATC_LTE;
262         }
263         ASSERT(0);
264 }
265
266 inline CompOp negateOp(CompOp op) {
267         switch (op) {
268         case SATC_EQUALS:
269                 ASSERT(0);
270         case SATC_LT:
271                 return SATC_GTE;
272         case SATC_GT:
273                 return SATC_LTE;
274         case SATC_LTE:
275                 return SATC_GT;
276         case SATC_GTE:
277                 return SATC_LT;
278         }
279         ASSERT(0);
280 }
281 #endif