summaryrefslogtreecommitdiff
path: root/src/theory/theory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/theory.cpp')
-rw-r--r--src/theory/theory.cpp10
1 files changed, 2 insertions, 8 deletions
diff --git a/src/theory/theory.cpp b/src/theory/theory.cpp
index 069767968..2ef4f42bf 100644
--- a/src/theory/theory.cpp
+++ b/src/theory/theory.cpp
@@ -69,8 +69,8 @@ Theory::Theory(TheoryId id,
d_careGraph(NULL),
d_quantEngine(NULL),
d_extTheory(NULL),
- d_checkTime(getFullInstanceName() + "::checkTime"),
- d_computeCareGraphTime(getFullInstanceName() + "::computeCareGraphTime"),
+ d_checkTime(getStatsPrefix(id) + "::checkTime"),
+ d_computeCareGraphTime(getStatsPrefix(id) + "::computeCareGraphTime"),
d_sharedTerms(satContext),
d_out(&out),
d_valuation(valuation),
@@ -337,12 +337,6 @@ EntailmentCheckParameters::EntailmentCheckParameters(TheoryId tid)
: d_tid(tid) {
}
-std::string Theory::getFullInstanceName() const {
- std::stringstream ss;
- ss << "theory<" << d_id << ">" << d_instanceName;
- return ss.str();
-}
-
EntailmentCheckParameters::~EntailmentCheckParameters(){}
TheoryId EntailmentCheckParameters::getTheoryId() const {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback