summaryrefslogtreecommitdiff
path: root/src/theory/theory.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.h
parentfb28f98f229c281c8d3e074f1d0d8784574fefa6 (diff)
fix some confusing debug output (bogus counter)
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 59d26ff05..56a5f2f76 100644
--- a/src/theory/theory.h
+++ b/src/theory/theory.h
@@ -141,7 +141,7 @@ protected:
d_wasSharedTermFact = false;
d_factsHead = d_factsHead + 1;
Debug("theory") << "Theory::get() => " << fact
- << " (" << d_facts.size() << " left)" << std::endl;
+ << " (" << d_facts.size() - d_factsHead << " left)" << std::endl;
d_out->newFact(fact);
return fact;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback