summaryrefslogtreecommitdiff
path: root/src/theory/theory_engine.cpp
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2012-08-21 22:13:12 +0000
committerMorgan Deters <mdeters@gmail.com>2012-08-21 22:13:12 +0000
commitc2fa4e991c3ba17857019da9becd185e90cc0ee0 (patch)
treebdaa64304d16e929f035590981846eeae1f34c63 /src/theory/theory_engine.cpp
parent3eaa11b288348aeb71d3fad4f3719525c253fc91 (diff)
add some incremental in-tree regressions
Diffstat (limited to 'src/theory/theory_engine.cpp')
-rw-r--r--src/theory/theory_engine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/theory_engine.cpp b/src/theory/theory_engine.cpp
index 6dfc9f22d..7cf356d2c 100644
--- a/src/theory/theory_engine.cpp
+++ b/src/theory/theory_engine.cpp
@@ -874,7 +874,7 @@ void TheoryEngine::assertToTheory(TNode assertion, theory::TheoryId toTheoryId,
// If sending to the shared terms database, it's also simple
if (toTheoryId == THEORY_BUILTIN) {
- Assert(atom.getKind() == kind::EQUAL);
+ Assert(atom.getKind() == kind::EQUAL, "atom should be an EQUALity, not `%s'", atom.toString().c_str());
if (markPropagation(assertion, assertion, toTheoryId, fromTheoryId)) {
d_sharedTerms.assertEquality(atom, polarity, assertion);
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback