projects
/
cvc5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2821b7a
)
Fixed a copy paste error where a lower bound was looked up instead of an upper bound.
author
Tim King
<taking@cs.nyu.edu>
Thu, 1 Mar 2012 00:38:37 +0000
(
00:38
+0000)
committer
Tim King
<taking@cs.nyu.edu>
Thu, 1 Mar 2012 00:38:37 +0000
(
00:38
+0000)
src/theory/arith/theory_arith.cpp
patch
|
blob
|
history
diff --git
a/src/theory/arith/theory_arith.cpp
b/src/theory/arith/theory_arith.cpp
index 1137ca7b7e872f0e32ce73e74b7e7df458a2db62..fcac6f10e3100464dbc0c2d5bd5f62d48c924db4 100644
(file)
--- a/
src/theory/arith/theory_arith.cpp
+++ b/
src/theory/arith/theory_arith.cpp
@@
-192,8
+192,8
@@
Node TheoryArith::AssertLower(ArithVar x_i, DeltaRational& c_i, TNode original){
Node diseq = left.eqNode(right).notNode();
if (d_diseq.find(diseq) != d_diseq.end()) {
- Node
lb = d_partialModel.getLow
erConstraint(x_i);
- return disequalityConflict(diseq,
l
b , original);
+ Node
ub = d_partialModel.getUpp
erConstraint(x_i);
+ return disequalityConflict(diseq,
u
b , original);
}
}