summaryrefslogtreecommitdiff
path: root/src/theory/fp
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2018-06-10 21:43:14 -0500
committerAndres Noetzli <andres.noetzli@gmail.com>2018-06-10 19:43:14 -0700
commitb19c840d2bd756d272b8b44c122be809a8b1c633 (patch)
treeaffa45f00fe34c83ccdb80f0e85125ce3ea5657b /src/theory/fp
parentf64824685c9342466249e1eabca53b5c04c0aed2 (diff)
Fix equality conflicts reported by FP (#2064)
Diffstat (limited to 'src/theory/fp')
-rw-r--r--src/theory/fp/theory_fp.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/theory/fp/theory_fp.cpp b/src/theory/fp/theory_fp.cpp
index 94733b98d..af7e0437f 100644
--- a/src/theory/fp/theory_fp.cpp
+++ b/src/theory/fp/theory_fp.cpp
@@ -907,8 +907,10 @@ bool TheoryFp::handlePropagation(TNode node) {
bool stat = d_out->propagate(node);
- if (!stat) handleConflict(node);
-
+ if (!stat)
+ {
+ d_conflict = true;
+ }
return stat;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback