summaryrefslogtreecommitdiff
path: root/src/theory/theory.h
diff options
context:
space:
mode:
authorDejan Jovanović <dejan.jovanovic@gmail.com>2012-01-23 04:19:38 +0000
committerDejan Jovanović <dejan.jovanovic@gmail.com>2012-01-23 04:19:38 +0000
commit3b3c5597a926cf6f2056fe237bcac7c4d2596a75 (patch)
tree7cbd06f2e08caded4b254e49ae5885187a31f76d /src/theory/theory.h
parentb0ac192fd4e8b1ff707e0e3cc9df92ab385f1fd4 (diff)
fix for bug295
Diffstat (limited to 'src/theory/theory.h')
-rw-r--r--src/theory/theory.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/theory.h b/src/theory/theory.h
index d11d28aec..7441bbc4e 100644
--- a/src/theory/theory.h
+++ b/src/theory/theory.h
@@ -376,7 +376,7 @@ public:
* Assert a fact in the current context.
*/
void assertFact(TNode assertion, bool isPreregistered) {
- Trace("theory") << "Theory<" << getId() << ">::assertFact(" << assertion << ", " << (isPreregistered ? "true" : "false") << ")" << std::endl;
+ Trace("theory") << "Theory<" << getId() << ">::assertFact[" << d_context->getLevel() << "](" << assertion << ", " << (isPreregistered ? "true" : "false") << ")" << std::endl;
d_facts.push_back(Assertion(assertion, isPreregistered));
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback