summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/prop/sat.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/prop/sat.cpp b/src/prop/sat.cpp
index 4cc7f1902..57ec29259 100644
--- a/src/prop/sat.cpp
+++ b/src/prop/sat.cpp
@@ -71,7 +71,7 @@ void SatSolver::explainPropagation(SatLiteral l, SatClause& explanation) {
Debug("prop-explain") << "explainPropagation(" << lNode.toString() << ")" << std::endl;
Node theoryExplanation = d_theoryEngine->getExplanation(lNode);
Debug("prop-explain") << "explainPropagation() => " << theoryExplanation.toString() << std::endl;
- if (lNode.getKind() == kind::AND) {
+ if (theoryExplanation.getKind() == kind::AND) {
Node::const_iterator it = theoryExplanation.begin();
Node::const_iterator it_end = theoryExplanation.end();
explanation.push(l);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback