From 159cb7ee8b6f28f3784a3f24b371760c2ab77f86 Mon Sep 17 00:00:00 2001 From: Morgan Deters Date: Fri, 1 Apr 2011 00:56:42 +0000 Subject: This commit is a merge from the "betterstats" branch, which: * Makes Options an "omnipresent thread-local global" (like the notion of the "current NodeManager" was already). Options::current() accesses this structure. * Removes Options from constructors and data structures everywhere (this cleans up a lot of things). * No longer uses StatisticsRegistry statically. An instance of the registry is created and linked to a NodeManager. * StatisticsRegistry::current() is similar to Options::current(), but the pointer is stowed in the NodeManager (rather than stored) * The static functions of StatisticsRegistry have been left, for backward compatibility; they now use the "current" statistics registry. * SmtEngine::getStatisticsRegistry() is a public accessor for the registry; this is needed by main() to reach in and get the registry, for flushing statistics at the end. --- src/theory/theory.h | 5 ----- 1 file changed, 5 deletions(-) (limited to 'src/theory/theory.h') diff --git a/src/theory/theory.h b/src/theory/theory.h index 72341869d..b5122d3c5 100644 --- a/src/theory/theory.h +++ b/src/theory/theory.h @@ -405,11 +405,6 @@ public: */ virtual std::string identify() const = 0; - /** - * Notify the theory of the current set of options. - */ - virtual void notifyOptions(const Options& opt) { } - };/* class Theory */ std::ostream& operator<<(std::ostream& os, Theory::Effort level); -- cgit v1.2.3