summaryrefslogtreecommitdiff
path: root/src/theory/theory_engine.h
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2011-07-11 19:34:01 +0000
committerMorgan Deters <mdeters@gmail.com>2011-07-11 19:34:01 +0000
commit7515ee9cda0925721c4fa7e1ba9ef3b25dc5e0d0 (patch)
tree043b9455bd8c9ac0d73637da344d2a7c2f1f6950 /src/theory/theory_engine.h
parentfb28f98f229c281c8d3e074f1d0d8784574fefa6 (diff)
fix some confusing debug output (bogus counter)
Diffstat (limited to 'src/theory/theory_engine.h')
-rw-r--r--src/theory/theory_engine.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/theory/theory_engine.h b/src/theory/theory_engine.h
index 94ba8cabb..d4138f807 100644
--- a/src/theory/theory_engine.h
+++ b/src/theory/theory_engine.h
@@ -355,7 +355,7 @@ public:
* @param node the assertion
*/
inline void assertFact(TNode node) {
- Debug("theory") << "TheoryEngine::assertFact(" << node << ")" << std::endl<<d_logic<<std::endl;
+ Debug("theory") << "TheoryEngine::assertFact(" << node << ")" << std::endl;
// Mark it as asserted in this context
//
@@ -369,7 +369,7 @@ public:
// Again, equality is a special case
if (atom.getKind() == kind::EQUAL) {
if(d_logic == "QF_AX") {
- //Debug("theory")<< "TheoryEngine::assertFact QF_AX logic; everything goes to Arrays \n";
+ Debug("theory") << "TheoryEngine::assertFact QF_AX logic; everything goes to Arrays" << std::endl;
d_theoryTable[theory::THEORY_ARRAY]->assertFact(node);
} else {
theory::Theory* theory = theoryOf(atom);
@@ -443,7 +443,7 @@ public:
TNode atom = node.getKind() == kind::NOT ? node[0] : node;
if (atom.getKind() == kind::EQUAL) {
if(d_logic == "QF_AX") {
- //Debug("theory")<< "TheoryEngine::assertFact QF_AX logic; everything goes to Arrays \n";
+ Debug("theory") << "TheoryEngine::assertFact QF_AX logic; everything goes to Arrays" << std::endl;
d_theoryTable[theory::THEORY_ARRAY]->explain(node);
} else {
theoryOf(atom[0])->explain(node);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback