summaryrefslogtreecommitdiff
path: root/src/theory/arith/theory_arith.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/arith/theory_arith.cpp')
-rw-r--r--src/theory/arith/theory_arith.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/theory/arith/theory_arith.cpp b/src/theory/arith/theory_arith.cpp
index 4369c6de0..1b13b9ee6 100644
--- a/src/theory/arith/theory_arith.cpp
+++ b/src/theory/arith/theory_arith.cpp
@@ -786,12 +786,10 @@ void TheoryArith::debugPrintModel(){
}
}
-void TheoryArith::explain(TNode n) {
+Node TheoryArith::explain(TNode n) {
Debug("explain") << "explain @" << getContext()->getLevel() << ": " << n << endl;
-
Assert(d_propManager.isPropagated(n));
- Node explanation = d_propManager.explain(n);
- d_out->explanation(explanation, true);
+ return d_propManager.explain(n);
}
void TheoryArith::propagate(Effort e) {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback