1 |
|
/****************************************************************************** |
2 |
|
* Top contributors (to current version): |
3 |
|
* Tim King |
4 |
|
* |
5 |
|
* This file is part of the cvc5 project. |
6 |
|
* |
7 |
|
* Copyright (c) 2009-2021 by the authors listed in the file AUTHORS |
8 |
|
* in the top-level source directory and their institutional affiliations. |
9 |
|
* All rights reserved. See the file COPYING in the top-level source |
10 |
|
* directory for licensing information. |
11 |
|
* **************************************************************************** |
12 |
|
* |
13 |
|
* [[ Add one-line brief description here ]] |
14 |
|
* |
15 |
|
* [[ Add lengthier description here ]] |
16 |
|
* \todo document this file |
17 |
|
*/ |
18 |
|
|
19 |
|
#include "base/output.h" |
20 |
|
#include "theory/arith/constraint.h" |
21 |
|
#include "theory/arith/normal_form.h" |
22 |
|
#include "theory/arith/partial_model.h" |
23 |
|
|
24 |
|
using namespace std; |
25 |
|
|
26 |
|
namespace cvc5 { |
27 |
|
namespace theory { |
28 |
|
namespace arith { |
29 |
|
|
30 |
9913 |
ArithVariables::ArithVariables(context::Context* c, DeltaComputeCallback deltaComputingFunc) |
31 |
|
: d_vars(), |
32 |
|
d_safeAssignment(), |
33 |
|
d_numberOfVariables(0), |
34 |
|
d_pool(), |
35 |
|
d_released(), |
36 |
|
d_nodeToArithVarMap(), |
37 |
|
d_boundsQueue(), |
38 |
|
d_enqueueingBoundCounts(true), |
39 |
19826 |
d_lbRevertHistory(c, true, LowerBoundCleanUp(this)), |
40 |
19826 |
d_ubRevertHistory(c, true, UpperBoundCleanUp(this)), |
41 |
|
d_deltaIsSafe(false), |
42 |
|
d_delta(-1,1), |
43 |
49565 |
d_deltaComputingFunc(deltaComputingFunc) |
44 |
9913 |
{ } |
45 |
|
|
46 |
254284677 |
ArithVar ArithVariables::getNumberOfVariables() const { |
47 |
254284677 |
return d_numberOfVariables; |
48 |
|
} |
49 |
|
|
50 |
|
|
51 |
11471549 |
bool ArithVariables::hasArithVar(TNode x) const { |
52 |
11471549 |
return d_nodeToArithVarMap.find(x) != d_nodeToArithVarMap.end(); |
53 |
|
} |
54 |
|
|
55 |
219786018 |
bool ArithVariables::hasNode(ArithVar a) const { |
56 |
219786018 |
return d_vars.isKey(a); |
57 |
|
} |
58 |
|
|
59 |
3793608 |
ArithVar ArithVariables::asArithVar(TNode x) const{ |
60 |
3793608 |
Assert(hasArithVar(x)); |
61 |
3793608 |
Assert((d_nodeToArithVarMap.find(x))->second <= ARITHVAR_SENTINEL); |
62 |
3793608 |
return (d_nodeToArithVarMap.find(x))->second; |
63 |
|
} |
64 |
|
|
65 |
216335333 |
Node ArithVariables::asNode(ArithVar a) const{ |
66 |
216335333 |
Assert(hasNode(a)); |
67 |
216335333 |
return d_vars[a].d_node; |
68 |
|
} |
69 |
|
|
70 |
|
ArithVariables::var_iterator::var_iterator() |
71 |
|
: d_vars(NULL) |
72 |
|
, d_wrapped() |
73 |
|
{} |
74 |
|
|
75 |
3604958 |
ArithVariables::var_iterator::var_iterator(const VarInfoVec* vars, VarInfoVec::const_iterator ci) |
76 |
3604958 |
: d_vars(vars), d_wrapped(ci) |
77 |
|
{ |
78 |
3604958 |
nextInitialized(); |
79 |
3604958 |
} |
80 |
|
|
81 |
17847357 |
ArithVariables::var_iterator& ArithVariables::var_iterator::operator++(){ |
82 |
17847357 |
++d_wrapped; |
83 |
17847357 |
nextInitialized(); |
84 |
17847357 |
return *this; |
85 |
|
} |
86 |
|
bool ArithVariables::var_iterator::operator==(const ArithVariables::var_iterator& other) const{ |
87 |
|
return d_wrapped == other.d_wrapped; |
88 |
|
} |
89 |
19649836 |
bool ArithVariables::var_iterator::operator!=(const ArithVariables::var_iterator& other) const{ |
90 |
19649836 |
return d_wrapped != other.d_wrapped; |
91 |
|
} |
92 |
17847357 |
ArithVar ArithVariables::var_iterator::operator*() const{ |
93 |
17847357 |
return *d_wrapped; |
94 |
|
} |
95 |
|
|
96 |
21452315 |
void ArithVariables::var_iterator::nextInitialized(){ |
97 |
21452315 |
VarInfoVec::const_iterator end = d_vars->end(); |
98 |
41001828 |
while(d_wrapped != end && |
99 |
19549513 |
!((*d_vars)[*d_wrapped].initialized())){ |
100 |
|
++d_wrapped; |
101 |
|
} |
102 |
21452315 |
} |
103 |
|
|
104 |
1802479 |
ArithVariables::var_iterator ArithVariables::var_begin() const { |
105 |
1802479 |
return var_iterator(&d_vars, d_vars.begin()); |
106 |
|
} |
107 |
|
|
108 |
1802479 |
ArithVariables::var_iterator ArithVariables::var_end() const { |
109 |
1802479 |
return var_iterator(&d_vars, d_vars.end()); |
110 |
|
} |
111 |
769265523 |
bool ArithVariables::isInteger(ArithVar x) const { |
112 |
769265523 |
return d_vars[x].d_type >= ArithType::Integer; |
113 |
|
} |
114 |
|
|
115 |
|
/** Is the assignment to x integral? */ |
116 |
209811270 |
bool ArithVariables::integralAssignment(ArithVar x) const { |
117 |
209811270 |
return getAssignment(x).isIntegral(); |
118 |
|
} |
119 |
584540134 |
bool ArithVariables::isAuxiliary(ArithVar x) const { |
120 |
584540134 |
return d_vars[x].d_auxiliary; |
121 |
|
} |
122 |
|
|
123 |
749541462 |
bool ArithVariables::isIntegerInput(ArithVar x) const { |
124 |
749541462 |
return isInteger(x) && !isAuxiliary(x); |
125 |
|
} |
126 |
|
|
127 |
330234 |
ArithVariables::VarInfo::VarInfo() |
128 |
|
: d_var(ARITHVAR_SENTINEL), |
129 |
|
d_assignment(0), |
130 |
|
d_lb(NullConstraint), |
131 |
|
d_ub(NullConstraint), |
132 |
|
d_cmpAssignmentLB(1), |
133 |
|
d_cmpAssignmentUB(-1), |
134 |
|
d_pushCount(0), |
135 |
|
d_type(ArithType::Unset), |
136 |
|
d_node(Node::null()), |
137 |
330234 |
d_auxiliary(false) {} |
138 |
|
|
139 |
34887971 |
bool ArithVariables::VarInfo::initialized() const { |
140 |
34887971 |
return d_var != ARITHVAR_SENTINEL; |
141 |
|
} |
142 |
|
|
143 |
165117 |
void ArithVariables::VarInfo::initialize(ArithVar v, Node n, bool aux){ |
144 |
165117 |
Assert(!initialized()); |
145 |
165117 |
Assert(d_lb == NullConstraint); |
146 |
165117 |
Assert(d_ub == NullConstraint); |
147 |
165117 |
Assert(d_cmpAssignmentLB > 0); |
148 |
165117 |
Assert(d_cmpAssignmentUB < 0); |
149 |
165117 |
d_var = v; |
150 |
165117 |
d_node = n; |
151 |
165117 |
d_auxiliary = aux; |
152 |
|
|
153 |
165117 |
if(d_auxiliary){ |
154 |
|
//The type computation is not quite accurate for Rationals that are |
155 |
|
//integral. |
156 |
|
//We'll use the isIntegral check from the polynomial package instead. |
157 |
189712 |
Polynomial p = Polynomial::parsePolynomial(n); |
158 |
94856 |
d_type = p.isIntegral() ? ArithType::Integer : ArithType::Real; |
159 |
|
}else{ |
160 |
70261 |
d_type = n.getType().isInteger() ? ArithType::Integer : ArithType::Real; |
161 |
|
} |
162 |
|
|
163 |
165117 |
Assert(initialized()); |
164 |
165117 |
} |
165 |
|
|
166 |
|
void ArithVariables::VarInfo::uninitialize(){ |
167 |
|
d_var = ARITHVAR_SENTINEL; |
168 |
|
d_node = Node::null(); |
169 |
|
} |
170 |
|
|
171 |
6625224 |
bool ArithVariables::VarInfo::setAssignment(const DeltaRational& a, BoundsInfo& prev){ |
172 |
6625224 |
Assert(initialized()); |
173 |
6625224 |
d_assignment = a; |
174 |
8002179 |
int cmpUB = (d_ub == NullConstraint) ? -1 : |
175 |
8002179 |
d_assignment.cmp(d_ub->getValue()); |
176 |
|
|
177 |
8402457 |
int cmpLB = (d_lb == NullConstraint) ? 1 : |
178 |
8402457 |
d_assignment.cmp(d_lb->getValue()); |
179 |
|
|
180 |
7235837 |
bool lbChanged = cmpLB != d_cmpAssignmentLB && |
181 |
318863 |
(cmpLB == 0 || d_cmpAssignmentLB == 0); |
182 |
7129431 |
bool ubChanged = cmpUB != d_cmpAssignmentUB && |
183 |
234932 |
(cmpUB == 0 || d_cmpAssignmentUB == 0); |
184 |
|
|
185 |
6625224 |
if(lbChanged || ubChanged){ |
186 |
884074 |
prev = boundsInfo(); |
187 |
|
} |
188 |
|
|
189 |
6625224 |
d_cmpAssignmentUB = cmpUB; |
190 |
6625224 |
d_cmpAssignmentLB = cmpLB; |
191 |
6625224 |
return lbChanged || ubChanged; |
192 |
|
} |
193 |
|
|
194 |
|
void ArithVariables::releaseArithVar(ArithVar v){ |
195 |
|
VarInfo& vi = d_vars.get(v); |
196 |
|
|
197 |
|
size_t removed CVC5_UNUSED = d_nodeToArithVarMap.erase(vi.d_node); |
198 |
|
Assert(removed == 1); |
199 |
|
|
200 |
|
vi.uninitialize(); |
201 |
|
|
202 |
|
if(d_safeAssignment.isKey(v)){ |
203 |
|
d_safeAssignment.remove(v); |
204 |
|
} |
205 |
|
if(vi.canBeReclaimed()){ |
206 |
|
d_pool.push_back(v); |
207 |
|
}else{ |
208 |
|
d_released.push_back(v); |
209 |
|
} |
210 |
|
} |
211 |
|
|
212 |
4054118 |
bool ArithVariables::VarInfo::setUpperBound(ConstraintP ub, BoundsInfo& prev){ |
213 |
4054118 |
Assert(initialized()); |
214 |
4054118 |
bool wasNull = d_ub == NullConstraint; |
215 |
4054118 |
bool isNull = ub == NullConstraint; |
216 |
|
|
217 |
4054118 |
int cmpUB = isNull ? -1 : d_assignment.cmp(ub->getValue()); |
218 |
8328783 |
bool ubChanged = (wasNull != isNull) || |
219 |
672580 |
(cmpUB != d_cmpAssignmentUB && (cmpUB == 0 || d_cmpAssignmentUB == 0)); |
220 |
4054118 |
if(ubChanged){ |
221 |
3832143 |
prev = boundsInfo(); |
222 |
|
} |
223 |
4054118 |
d_ub = ub; |
224 |
4054118 |
d_cmpAssignmentUB = cmpUB; |
225 |
4054118 |
return ubChanged; |
226 |
|
} |
227 |
|
|
228 |
4328882 |
bool ArithVariables::VarInfo::setLowerBound(ConstraintP lb, BoundsInfo& prev){ |
229 |
4328882 |
Assert(initialized()); |
230 |
4328882 |
bool wasNull = d_lb == NullConstraint; |
231 |
4328882 |
bool isNull = lb == NullConstraint; |
232 |
|
|
233 |
4328882 |
int cmpLB = isNull ? 1 : d_assignment.cmp(lb->getValue()); |
234 |
|
|
235 |
8988759 |
bool lbChanged = (wasNull != isNull) || |
236 |
1131705 |
(cmpLB != d_cmpAssignmentLB && (cmpLB == 0 || d_cmpAssignmentLB == 0)); |
237 |
4328882 |
if(lbChanged){ |
238 |
3867539 |
prev = boundsInfo(); |
239 |
|
} |
240 |
4328882 |
d_lb = lb; |
241 |
4328882 |
d_cmpAssignmentLB = cmpLB; |
242 |
4328882 |
return lbChanged; |
243 |
|
} |
244 |
|
|
245 |
84613947 |
BoundCounts ArithVariables::VarInfo::atBoundCounts() const { |
246 |
84613947 |
uint32_t lbIndc = (d_cmpAssignmentLB == 0) ? 1 : 0; |
247 |
84613947 |
uint32_t ubIndc = (d_cmpAssignmentUB == 0) ? 1 : 0; |
248 |
84613947 |
return BoundCounts(lbIndc, ubIndc); |
249 |
|
} |
250 |
|
|
251 |
75475303 |
BoundCounts ArithVariables::VarInfo::hasBoundCounts() const { |
252 |
75475303 |
uint32_t lbIndc = (d_lb != NullConstraint) ? 1 : 0; |
253 |
75475303 |
uint32_t ubIndc = (d_ub != NullConstraint) ? 1 : 0; |
254 |
75475303 |
return BoundCounts(lbIndc, ubIndc); |
255 |
|
} |
256 |
|
|
257 |
75475303 |
BoundsInfo ArithVariables::VarInfo::boundsInfo() const{ |
258 |
75475303 |
return BoundsInfo(atBoundCounts(), hasBoundCounts()); |
259 |
|
} |
260 |
|
|
261 |
|
bool ArithVariables::VarInfo::canBeReclaimed() const{ |
262 |
|
return d_pushCount == 0; |
263 |
|
} |
264 |
|
|
265 |
|
bool ArithVariables::canBeReleased(ArithVar v) const{ |
266 |
|
return d_vars[v].canBeReclaimed(); |
267 |
|
} |
268 |
|
|
269 |
165117 |
void ArithVariables::attemptToReclaimReleased(){ |
270 |
165117 |
size_t readPos = 0, writePos = 0, N = d_released.size(); |
271 |
165117 |
for(; readPos < N; ++readPos){ |
272 |
|
ArithVar v = d_released[readPos]; |
273 |
|
if(canBeReleased(v)){ |
274 |
|
d_pool.push_back(v); |
275 |
|
}else{ |
276 |
|
d_released[writePos] = v; |
277 |
|
writePos++; |
278 |
|
} |
279 |
|
} |
280 |
165117 |
d_released.resize(writePos); |
281 |
165117 |
} |
282 |
|
|
283 |
165117 |
ArithVar ArithVariables::allocateVariable(){ |
284 |
165117 |
if(d_pool.empty()){ |
285 |
165117 |
attemptToReclaimReleased(); |
286 |
|
} |
287 |
165117 |
bool reclaim = !d_pool.empty(); |
288 |
|
|
289 |
|
ArithVar varX; |
290 |
165117 |
if(reclaim){ |
291 |
|
varX = d_pool.back(); |
292 |
|
d_pool.pop_back(); |
293 |
|
}else{ |
294 |
165117 |
varX = d_numberOfVariables; |
295 |
165117 |
++d_numberOfVariables; |
296 |
|
} |
297 |
165117 |
d_vars.set(varX, VarInfo()); |
298 |
165117 |
return varX; |
299 |
|
} |
300 |
|
|
301 |
|
|
302 |
45490 |
const Rational& ArithVariables::getDelta(){ |
303 |
45490 |
if(!d_deltaIsSafe){ |
304 |
55724 |
Rational nextDelta = d_deltaComputingFunc(); |
305 |
27862 |
setDelta(nextDelta); |
306 |
|
} |
307 |
45490 |
Assert(d_deltaIsSafe); |
308 |
45490 |
return d_delta; |
309 |
|
} |
310 |
|
|
311 |
59220 |
bool ArithVariables::boundsAreEqual(ArithVar x) const{ |
312 |
59220 |
if(hasLowerBound(x) && hasUpperBound(x)){ |
313 |
49230 |
return getUpperBound(x) == getLowerBound(x); |
314 |
|
}else{ |
315 |
9990 |
return false; |
316 |
|
} |
317 |
|
} |
318 |
|
|
319 |
|
|
320 |
|
std::pair<ConstraintP, ConstraintP> ArithVariables::explainEqualBounds(ArithVar x) const{ |
321 |
|
Assert(boundsAreEqual(x)); |
322 |
|
|
323 |
|
ConstraintP lb = getLowerBoundConstraint(x); |
324 |
|
ConstraintP ub = getUpperBoundConstraint(x); |
325 |
|
if(lb->isEquality()){ |
326 |
|
return make_pair(lb, NullConstraint); |
327 |
|
}else if(ub->isEquality()){ |
328 |
|
return make_pair(ub, NullConstraint); |
329 |
|
}else{ |
330 |
|
return make_pair(lb, ub); |
331 |
|
} |
332 |
|
} |
333 |
|
|
334 |
6530368 |
void ArithVariables::setAssignment(ArithVar x, const DeltaRational& r){ |
335 |
13060736 |
Debug("partial_model") << "pm: updating the assignment to" << x |
336 |
6530368 |
<< " now " << r <<endl; |
337 |
6530368 |
VarInfo& vi = d_vars.get(x); |
338 |
6530368 |
if(!d_safeAssignment.isKey(x)){ |
339 |
3697582 |
d_safeAssignment.set(x, vi.d_assignment); |
340 |
|
} |
341 |
6530368 |
invalidateDelta(); |
342 |
|
|
343 |
6530368 |
BoundsInfo prev; |
344 |
6530368 |
if(vi.setAssignment(r, prev)){ |
345 |
884074 |
addToBoundQueue(x, prev); |
346 |
|
} |
347 |
6530368 |
} |
348 |
|
|
349 |
94856 |
void ArithVariables::setAssignment(ArithVar x, const DeltaRational& safe, const DeltaRational& r){ |
350 |
189712 |
Debug("partial_model") << "pm: updating the assignment to" << x |
351 |
94856 |
<< " now " << r <<endl; |
352 |
94856 |
if(safe == r){ |
353 |
94459 |
if(d_safeAssignment.isKey(x)){ |
354 |
|
d_safeAssignment.remove(x); |
355 |
|
} |
356 |
|
}else{ |
357 |
397 |
d_safeAssignment.set(x, safe); |
358 |
|
} |
359 |
|
|
360 |
94856 |
invalidateDelta(); |
361 |
94856 |
VarInfo& vi = d_vars.get(x); |
362 |
94856 |
BoundsInfo prev; |
363 |
94856 |
if(vi.setAssignment(r, prev)){ |
364 |
|
addToBoundQueue(x, prev); |
365 |
|
} |
366 |
94856 |
} |
367 |
|
|
368 |
165117 |
void ArithVariables::initialize(ArithVar x, Node n, bool aux){ |
369 |
165117 |
VarInfo& vi = d_vars.get(x); |
370 |
165117 |
vi.initialize(x, n, aux); |
371 |
165117 |
d_nodeToArithVarMap[n] = x; |
372 |
165117 |
} |
373 |
|
|
374 |
165117 |
ArithVar ArithVariables::allocate(Node n, bool aux){ |
375 |
165117 |
ArithVar v = allocateVariable(); |
376 |
165117 |
initialize(v, n, aux); |
377 |
165117 |
return v; |
378 |
|
} |
379 |
|
|
380 |
|
// void ArithVariables::initialize(ArithVar x, const DeltaRational& r){ |
381 |
|
// Assert(x == d_mapSize); |
382 |
|
// Assert(equalSizes()); |
383 |
|
// ++d_mapSize; |
384 |
|
|
385 |
|
// // Is worth mentioning that this is not strictly necessary, but this maintains the internal invariant |
386 |
|
// // that when d_assignment is set this gets set. |
387 |
|
// invalidateDelta(); |
388 |
|
// d_assignment.push_back( r ); |
389 |
|
|
390 |
|
// d_boundRel.push_back(BetweenBounds); |
391 |
|
|
392 |
|
// d_ubc.push_back(NullConstraint); |
393 |
|
// d_lbc.push_back(NullConstraint); |
394 |
|
// } |
395 |
|
|
396 |
|
/** Must know that the bound exists both calling this! */ |
397 |
5292738 |
const DeltaRational& ArithVariables::getUpperBound(ArithVar x) const { |
398 |
5292738 |
Assert(inMaps(x)); |
399 |
5292738 |
Assert(hasUpperBound(x)); |
400 |
|
|
401 |
5292738 |
return getUpperBoundConstraint(x)->getValue(); |
402 |
|
} |
403 |
|
|
404 |
5861395 |
const DeltaRational& ArithVariables::getLowerBound(ArithVar x) const { |
405 |
5861395 |
Assert(inMaps(x)); |
406 |
5861395 |
Assert(hasLowerBound(x)); |
407 |
|
|
408 |
5861395 |
return getLowerBoundConstraint(x)->getValue(); |
409 |
|
} |
410 |
|
|
411 |
|
const DeltaRational& ArithVariables::getSafeAssignment(ArithVar x) const{ |
412 |
|
Assert(inMaps(x)); |
413 |
|
if(d_safeAssignment.isKey(x)){ |
414 |
|
return d_safeAssignment[x]; |
415 |
|
}else{ |
416 |
|
return d_vars[x].d_assignment; |
417 |
|
} |
418 |
|
} |
419 |
|
|
420 |
743304 |
const DeltaRational& ArithVariables::getAssignment(ArithVar x, bool safe) const{ |
421 |
743304 |
Assert(inMaps(x)); |
422 |
743304 |
if(safe && d_safeAssignment.isKey(x)){ |
423 |
424 |
return d_safeAssignment[x]; |
424 |
|
}else{ |
425 |
742880 |
return d_vars[x].d_assignment; |
426 |
|
} |
427 |
|
} |
428 |
|
|
429 |
234221608 |
const DeltaRational& ArithVariables::getAssignment(ArithVar x) const{ |
430 |
234221608 |
Assert(inMaps(x)); |
431 |
234221608 |
return d_vars[x].d_assignment; |
432 |
|
} |
433 |
|
|
434 |
|
|
435 |
2164441 |
void ArithVariables::setLowerBoundConstraint(ConstraintP c){ |
436 |
2164441 |
AssertArgument(c != NullConstraint, "Cannot set a lower bound to NullConstraint."); |
437 |
2164441 |
AssertArgument(c->isEquality() || c->isLowerBound(), |
438 |
|
"Constraint type must be set to an equality or UpperBound."); |
439 |
2164441 |
ArithVar x = c->getVariable(); |
440 |
2164441 |
Debug("partial_model") << "setLowerBoundConstraint(" << x << ":" << c << ")" << endl; |
441 |
2164441 |
Assert(inMaps(x)); |
442 |
2164441 |
Assert(greaterThanLowerBound(x, c->getValue())); |
443 |
|
|
444 |
2164441 |
invalidateDelta(); |
445 |
2164441 |
VarInfo& vi = d_vars.get(x); |
446 |
2164441 |
pushLowerBound(vi); |
447 |
2164441 |
BoundsInfo prev; |
448 |
2164441 |
if(vi.setLowerBound(c, prev)){ |
449 |
1935691 |
addToBoundQueue(x, prev); |
450 |
|
} |
451 |
2164441 |
} |
452 |
|
|
453 |
2027059 |
void ArithVariables::setUpperBoundConstraint(ConstraintP c){ |
454 |
2027059 |
AssertArgument(c != NullConstraint, "Cannot set a upper bound to NullConstraint."); |
455 |
2027059 |
AssertArgument(c->isEquality() || c->isUpperBound(), |
456 |
|
"Constraint type must be set to an equality or UpperBound."); |
457 |
|
|
458 |
2027059 |
ArithVar x = c->getVariable(); |
459 |
2027059 |
Debug("partial_model") << "setUpperBoundConstraint(" << x << ":" << c << ")" << endl; |
460 |
2027059 |
Assert(inMaps(x)); |
461 |
2027059 |
Assert(lessThanUpperBound(x, c->getValue())); |
462 |
|
|
463 |
2027059 |
invalidateDelta(); |
464 |
2027059 |
VarInfo& vi = d_vars.get(x); |
465 |
2027059 |
pushUpperBound(vi); |
466 |
2027059 |
BoundsInfo prev; |
467 |
2027059 |
if(vi.setUpperBound(c, prev)){ |
468 |
1916470 |
addToBoundQueue(x, prev); |
469 |
|
} |
470 |
2027059 |
} |
471 |
|
|
472 |
7564608 |
int ArithVariables::cmpToLowerBound(ArithVar x, const DeltaRational& c) const{ |
473 |
7564608 |
if(!hasLowerBound(x)){ |
474 |
|
// l = -\intfy |
475 |
|
// ? c < -\infty |- _|_ |
476 |
5046796 |
return 1; |
477 |
|
}else{ |
478 |
2517812 |
return c.cmp(getLowerBound(x)); |
479 |
|
} |
480 |
|
} |
481 |
|
|
482 |
7059815 |
int ArithVariables::cmpToUpperBound(ArithVar x, const DeltaRational& c) const{ |
483 |
7059815 |
if(!hasUpperBound(x)){ |
484 |
|
//u = \intfy |
485 |
|
// ? c > \infty |- _|_ |
486 |
5025027 |
return -1; |
487 |
|
}else{ |
488 |
2034788 |
return c.cmp(getUpperBound(x)); |
489 |
|
} |
490 |
|
} |
491 |
|
|
492 |
|
bool ArithVariables::equalsLowerBound(ArithVar x, const DeltaRational& c){ |
493 |
|
if(!hasLowerBound(x)){ |
494 |
|
return false; |
495 |
|
}else{ |
496 |
|
return c == getLowerBound(x); |
497 |
|
} |
498 |
|
} |
499 |
|
bool ArithVariables::equalsUpperBound(ArithVar x, const DeltaRational& c){ |
500 |
|
if(!hasUpperBound(x)){ |
501 |
|
return false; |
502 |
|
}else{ |
503 |
|
return c == getUpperBound(x); |
504 |
|
} |
505 |
|
} |
506 |
|
|
507 |
2568620 |
bool ArithVariables::hasEitherBound(ArithVar x) const{ |
508 |
2568620 |
return hasLowerBound(x) || hasUpperBound(x); |
509 |
|
} |
510 |
|
|
511 |
1661707 |
bool ArithVariables::strictlyBelowUpperBound(ArithVar x) const{ |
512 |
1661707 |
return d_vars[x].d_cmpAssignmentUB < 0; |
513 |
|
} |
514 |
|
|
515 |
3096986 |
bool ArithVariables::strictlyAboveLowerBound(ArithVar x) const{ |
516 |
3096986 |
return d_vars[x].d_cmpAssignmentLB > 0; |
517 |
|
} |
518 |
|
|
519 |
16969395 |
bool ArithVariables::assignmentIsConsistent(ArithVar x) const{ |
520 |
|
return |
521 |
32956218 |
d_vars[x].d_cmpAssignmentLB >= 0 && |
522 |
32956218 |
d_vars[x].d_cmpAssignmentUB <= 0; |
523 |
|
} |
524 |
|
|
525 |
|
|
526 |
1856726 |
void ArithVariables::clearSafeAssignments(bool revert){ |
527 |
|
|
528 |
1856726 |
if(revert && !d_safeAssignment.empty()){ |
529 |
|
invalidateDelta(); |
530 |
|
} |
531 |
|
|
532 |
9252684 |
while(!d_safeAssignment.empty()){ |
533 |
3697979 |
ArithVar atBack = d_safeAssignment.back(); |
534 |
3697979 |
if(revert){ |
535 |
|
VarInfo& vi = d_vars.get(atBack); |
536 |
|
BoundsInfo prev; |
537 |
|
if(vi.setAssignment(d_safeAssignment[atBack], prev)){ |
538 |
|
addToBoundQueue(atBack, prev); |
539 |
|
} |
540 |
|
} |
541 |
3697979 |
d_safeAssignment.pop_back(); |
542 |
|
} |
543 |
1856726 |
} |
544 |
|
|
545 |
55217 |
void ArithVariables::revertAssignmentChanges(){ |
546 |
55217 |
clearSafeAssignments(true); |
547 |
55217 |
} |
548 |
1801509 |
void ArithVariables::commitAssignmentChanges(){ |
549 |
1801509 |
clearSafeAssignments(false); |
550 |
1801509 |
} |
551 |
|
|
552 |
806524 |
bool ArithVariables::lowerBoundIsZero(ArithVar x){ |
553 |
806524 |
return hasLowerBound(x) && getLowerBound(x).sgn() == 0; |
554 |
|
} |
555 |
|
|
556 |
857525 |
bool ArithVariables::upperBoundIsZero(ArithVar x){ |
557 |
857525 |
return hasUpperBound(x) && getUpperBound(x).sgn() == 0; |
558 |
|
} |
559 |
|
|
560 |
|
void ArithVariables::printEntireModel(std::ostream& out) const{ |
561 |
|
out << "---Printing Model ---" << std::endl; |
562 |
|
for(var_iterator i = var_begin(), iend = var_end(); i != iend; ++i){ |
563 |
|
printModel(*i, out); |
564 |
|
} |
565 |
|
out << "---Done Model ---" << std::endl; |
566 |
|
} |
567 |
|
|
568 |
|
void ArithVariables::printModel(ArithVar x, std::ostream& out) const{ |
569 |
|
out << "model" << x << ": " |
570 |
|
<< asNode(x) << " " |
571 |
|
<< getAssignment(x) << " "; |
572 |
|
if(!hasLowerBound(x)){ |
573 |
|
out << "no lb "; |
574 |
|
}else{ |
575 |
|
out << getLowerBound(x) << " "; |
576 |
|
out << getLowerBoundConstraint(x) << " "; |
577 |
|
} |
578 |
|
if(!hasUpperBound(x)){ |
579 |
|
out << "no ub "; |
580 |
|
}else{ |
581 |
|
out << getUpperBound(x) << " "; |
582 |
|
out << getUpperBoundConstraint(x) << " "; |
583 |
|
} |
584 |
|
|
585 |
|
if(isInteger(x) && !integralAssignment(x)){ |
586 |
|
out << "(not an integer)" << endl; |
587 |
|
} |
588 |
|
out << endl; |
589 |
|
} |
590 |
|
|
591 |
|
void ArithVariables::printModel(ArithVar x) const{ |
592 |
|
printModel(x, Debug("model")); |
593 |
|
} |
594 |
|
|
595 |
2027059 |
void ArithVariables::pushUpperBound(VarInfo& vi){ |
596 |
2027059 |
++vi.d_pushCount; |
597 |
6218559 |
d_ubRevertHistory.push_back(make_pair(vi.d_var, vi.d_ub)); |
598 |
2027059 |
} |
599 |
2164441 |
void ArithVariables::pushLowerBound(VarInfo& vi){ |
600 |
2164441 |
++vi.d_pushCount; |
601 |
2164441 |
d_lbRevertHistory.push_back(make_pair(vi.d_var, vi.d_lb)); |
602 |
2164441 |
} |
603 |
|
|
604 |
2027059 |
void ArithVariables::popUpperBound(AVCPair* c){ |
605 |
2027059 |
ArithVar x = c->first; |
606 |
2027059 |
VarInfo& vi = d_vars.get(x); |
607 |
2027059 |
BoundsInfo prev; |
608 |
2027059 |
if(vi.setUpperBound(c->second, prev)){ |
609 |
1915673 |
addToBoundQueue(x, prev); |
610 |
|
} |
611 |
2027059 |
--vi.d_pushCount; |
612 |
2027059 |
} |
613 |
|
|
614 |
2164441 |
void ArithVariables::popLowerBound(AVCPair* c){ |
615 |
2164441 |
ArithVar x = c->first; |
616 |
2164441 |
VarInfo& vi = d_vars.get(x); |
617 |
2164441 |
BoundsInfo prev; |
618 |
2164441 |
if(vi.setLowerBound(c->second, prev)){ |
619 |
1931848 |
addToBoundQueue(x, prev); |
620 |
|
} |
621 |
2164441 |
--vi.d_pushCount; |
622 |
2164441 |
} |
623 |
|
|
624 |
8583756 |
void ArithVariables::addToBoundQueue(ArithVar v, const BoundsInfo& prev){ |
625 |
8583756 |
if(d_enqueueingBoundCounts && !d_boundsQueue.isKey(v)){ |
626 |
4979825 |
d_boundsQueue.set(v, prev); |
627 |
|
} |
628 |
8583756 |
} |
629 |
|
|
630 |
466508 |
BoundsInfo ArithVariables::selectBoundsInfo(ArithVar v, bool old) const { |
631 |
466508 |
if(old && d_boundsQueue.isKey(v)){ |
632 |
15403 |
return d_boundsQueue[v]; |
633 |
|
}else{ |
634 |
451105 |
return boundsInfo(v); |
635 |
|
} |
636 |
|
} |
637 |
|
|
638 |
17500002 |
bool ArithVariables::boundsQueueEmpty() const { |
639 |
17500002 |
return d_boundsQueue.empty(); |
640 |
|
} |
641 |
|
|
642 |
7664236 |
void ArithVariables::processBoundsQueue(BoundUpdateCallback& changed){ |
643 |
12555054 |
while(!boundsQueueEmpty()){ |
644 |
4890818 |
ArithVar v = d_boundsQueue.back(); |
645 |
4890818 |
BoundsInfo prev = d_boundsQueue[v]; |
646 |
4890818 |
d_boundsQueue.pop_back(); |
647 |
4890818 |
BoundsInfo curr = boundsInfo(v); |
648 |
4890818 |
if(prev != curr){ |
649 |
4721268 |
changed(v, prev); |
650 |
|
} |
651 |
|
} |
652 |
2773418 |
} |
653 |
|
|
654 |
11107977 |
void ArithVariables::invalidateDelta() { |
655 |
11107977 |
d_deltaIsSafe = false; |
656 |
11107977 |
} |
657 |
|
|
658 |
27862 |
void ArithVariables::setDelta(const Rational& d){ |
659 |
27862 |
d_delta = d; |
660 |
27862 |
d_deltaIsSafe = true; |
661 |
27862 |
} |
662 |
|
|
663 |
1730165 |
void ArithVariables::startQueueingBoundCounts(){ |
664 |
1730165 |
d_enqueueingBoundCounts = true; |
665 |
1730165 |
} |
666 |
1730165 |
void ArithVariables::stopQueueingBoundCounts(){ |
667 |
1730165 |
d_enqueueingBoundCounts = false; |
668 |
1730165 |
} |
669 |
|
|
670 |
250310545 |
bool ArithVariables::inMaps(ArithVar x) const{ |
671 |
250310545 |
return x < getNumberOfVariables(); |
672 |
|
} |
673 |
|
|
674 |
9913 |
ArithVariables::LowerBoundCleanUp::LowerBoundCleanUp(ArithVariables* pm) |
675 |
9913 |
: d_pm(pm) |
676 |
9913 |
{} |
677 |
2164441 |
void ArithVariables::LowerBoundCleanUp::operator()(AVCPair* p){ |
678 |
2164441 |
d_pm->popLowerBound(p); |
679 |
2164441 |
} |
680 |
|
|
681 |
9913 |
ArithVariables::UpperBoundCleanUp::UpperBoundCleanUp(ArithVariables* pm) |
682 |
9913 |
: d_pm(pm) |
683 |
9913 |
{} |
684 |
2027059 |
void ArithVariables::UpperBoundCleanUp::operator()(AVCPair* p){ |
685 |
2027059 |
d_pm->popUpperBound(p); |
686 |
2027059 |
} |
687 |
|
|
688 |
|
} // namespace arith |
689 |
|
} // namespace theory |
690 |
29502 |
} // namespace cvc5 |