summaryrefslogtreecommitdiff
path: root/src/theory/strings/theory_strings.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/strings/theory_strings.h')
-rw-r--r--src/theory/strings/theory_strings.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/theory/strings/theory_strings.h b/src/theory/strings/theory_strings.h
index 81748d607..cd147a591 100644
--- a/src/theory/strings/theory_strings.h
+++ b/src/theory/strings/theory_strings.h
@@ -328,6 +328,19 @@ public:
Node getNextDecisionRequest();
void assertNode( Node lit );
+public:
+/** statistics class */
+ class Statistics {
+ public:
+ IntStat d_splits;
+ IntStat d_deq_splits;
+ IntStat d_loop_lemmas;
+ IntStat d_unroll_lemmas;
+ IntStat d_new_skolems;
+ Statistics();
+ ~Statistics();
+ };/* class QuantifiersEngine::Statistics */
+ Statistics d_statistics;
};/* class TheoryStrings */
}/* CVC4::theory::strings namespace */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback