Bug fixes for Java API + Exactly one constraints + Adding support for getting the...
[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         /** After getting the solution from the SAT solver, client can get the value of an element via this function*/
134         uint64_t getElementValue(Element *element);
135
136         /** After getting the solution from the SAT solver, client can get the value of a boolean via this function*/
137         bool getBooleanValue(BooleanEdge boolean);
138
139         bool getOrderConstraintValue(Order *order, uint64_t first, uint64_t second);
140
141         bool isTrue(BooleanEdge b);
142         bool isFalse(BooleanEdge b);
143
144         void setUnSAT() { model_print("Setting UNSAT %%%%%%\n"); unsat = true; }
145         void setSatSolverTimeout(long seconds) { satsolverTimeout = seconds;}
146         bool isUnSAT() { return unsat; }
147         bool isBooleanVarUsed() {return booleanVarUsed;}
148         void printConstraint(BooleanEdge boolean);
149         void printConstraints();
150
151         Vector<Order *> *getOrders() { return &allOrders;}
152         HashsetOrder *getActiveOrders() { return &activeOrders;}
153
154         Tuner *getTuner() { return tuner; }
155
156         SetIteratorBooleanEdge *getConstraints() { return constraints.iterator(); }
157
158         SATEncoder *getSATEncoder() {return satEncoder;}
159
160         void replaceBooleanWithTrue(BooleanEdge bexpr);
161         void replaceBooleanWithTrueNoRemove(BooleanEdge bexpr);
162         void replaceBooleanWithFalseNoRemove(BooleanEdge bexpr);
163         void replaceBooleanWithFalse(BooleanEdge bexpr);
164         void replaceBooleanWithBoolean(BooleanEdge oldb, BooleanEdge newb);
165         CSolver *clone();
166         void serialize();
167         static CSolver *deserialize(const char *file, InterpreterType itype = SATUNE);
168         void autoTune(uint budget);
169         void inferFixedOrders();
170         void inferFixedOrder(Order *order);
171         void setInterpreter(InterpreterType type);
172         bool useInterpreter() {return interpreter != NULL;}
173         void setTuner(Tuner *_tuner) { tuner = _tuner; }
174         long long getElapsedTime() { return elapsedTime; }
175         long long getEncodeTime();
176         long long getSolveTime();
177         long getSatSolverTimeout() { return satsolverTimeout;}
178
179         CMEMALLOC;
180
181 private:
182         void handleIFFTrue(BooleanLogic *bexpr, BooleanEdge child);
183         void handleANDTrue(BooleanLogic *bexpr, BooleanEdge child);
184         void handleFunction(ElementFunction *ef, BooleanEdge child);
185
186         //These two functions are helpers if the client has a pointer to a
187         //Boolean object that we have since replaced
188         BooleanEdge rewriteLogicalOperation(LogicOp op, BooleanEdge *array, uint asize);
189         BooleanEdge doRewrite(BooleanEdge b);
190         /** This is a vector of constraints that must be satisfied. */
191         HashsetBooleanEdge constraints;
192
193         /** This is a vector of all boolean structs that we have allocated. */
194         Vector<Boolean *> allBooleans;
195
196         /** This is a vector of all set structs that we have allocated. */
197         Vector<Set *> allSets;
198
199         /** This is a vector of all element structs that we have allocated. */
200         Vector<Element *> allElements;
201
202         /** This is a vector of all predicate structs that we have allocated. */
203         Vector<Predicate *> allPredicates;
204
205         /** This is a vector of all table structs that we have allocated. */
206         Vector<Table *> allTables;
207
208         /** This is a vector of all order structs that we have allocated. */
209         Vector<Order *> allOrders;
210
211         HashsetOrder activeOrders;
212
213         /** This is a vector of all function structs that we have allocated. */
214         Vector<Function *> allFunctions;
215
216         BooleanEdge boolTrue;
217         BooleanEdge boolFalse;
218
219         /** These two tables are used for deduplicating entries. */
220         BooleanMatchMap boolMap;
221         ElementMatchMap elemMap;
222
223         SATEncoder *satEncoder;
224         bool unsat;
225         bool booleanVarUsed;
226         Tuner *tuner;
227         long long elapsedTime;
228         long satsolverTimeout;
229         Interpreter *interpreter;
230         friend class ElementOpt;
231         friend class VarOrderingOpt;
232 };
233
234 inline CompOp flipOp(CompOp op) {
235         switch (op) {
236         case SATC_EQUALS:
237                 return SATC_EQUALS;
238         case SATC_LT:
239                 return SATC_GT;
240         case SATC_GT:
241                 return SATC_LT;
242         case SATC_LTE:
243                 return SATC_GTE;
244         case SATC_GTE:
245                 return SATC_LTE;
246         }
247         ASSERT(0);
248 }
249
250 inline CompOp negateOp(CompOp op) {
251         switch (op) {
252         case SATC_EQUALS:
253                 ASSERT(0);
254         case SATC_LT:
255                 return SATC_GTE;
256         case SATC_GT:
257                 return SATC_LTE;
258         case SATC_LTE:
259                 return SATC_GT;
260         case SATC_GTE:
261                 return SATC_LT;
262         }
263         ASSERT(0);
264 }
265 #endif