projects
/
cvc5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4711f24
)
Fix for bug 305.
author
Tim King
<taking@cs.nyu.edu>
Wed, 22 Feb 2012 22:32:45 +0000
(22:32 +0000)
committer
Tim King
<taking@cs.nyu.edu>
Wed, 22 Feb 2012 22:32:45 +0000
(22:32 +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 05159407c975d71f0705c5305e737cb23a9b3301..ec5752d3a6bf0575fda6c5c71deb9f4eb5be4a82 100644
(file)
--- a/
src/theory/arith/theory_arith.cpp
+++ b/
src/theory/arith/theory_arith.cpp
@@
-587,6
+587,10
@@
Node TheoryArith::callDioSolver(){
if(lb == ub){
Assert(lb.getKind() == EQUAL);
orig = lb;
+ }else if(lb.getKind() == EQUAL){
+ orig = lb;
+ }else if(ub.getKind() == EQUAL){
+ orig = ub;
}else{
NodeBuilder<> nb(AND);
nb << ub << lb;