summaryrefslogtreecommitdiff
path: root/src/theory/theory.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/theory.h')
-rw-r--r--src/theory/theory.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/theory/theory.h b/src/theory/theory.h
index 56a5f2f76..93d78f57c 100644
--- a/src/theory/theory.h
+++ b/src/theory/theory.h
@@ -140,7 +140,7 @@ protected:
TNode fact = d_facts[d_factsHead];
d_wasSharedTermFact = false;
d_factsHead = d_factsHead + 1;
- Debug("theory") << "Theory::get() => " << fact
+ Trace("theory") << "Theory::get() => " << fact
<< " (" << d_facts.size() - d_factsHead << " left)" << std::endl;
d_out->newFact(fact);
return fact;
@@ -312,7 +312,7 @@ public:
* Assert a fact in the current context.
*/
void assertFact(TNode node) {
- Debug("theory") << "Theory::assertFact(" << node << ")" << std::endl;
+ Trace("theory") << "Theory::assertFact(" << node << ")" << std::endl;
d_facts.push_back(node);
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback