summaryrefslogtreecommitdiff
path: root/src/theory
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2010-02-22 19:22:56 +0000
committerMorgan Deters <mdeters@gmail.com>2010-02-22 19:22:56 +0000
commitc96d62d41a178e0f524c39a0f73da9b7730dcf0b (patch)
tree593a1e9f62cc9605ac374df1203e85e437d424d9 /src/theory
parent9ae657c4568114eb888d9c0b8c27c09586556ff3 (diff)
undoing improperly-committed revision 232; will re-commit to get "svn blame" correct, etc..
Diffstat (limited to 'src/theory')
-rw-r--r--src/theory/output_channel.h16
-rw-r--r--src/theory/theory.h10
2 files changed, 1 insertions, 25 deletions
diff --git a/src/theory/output_channel.h b/src/theory/output_channel.h
index c530434f5..cec499a13 100644
--- a/src/theory/output_channel.h
+++ b/src/theory/output_channel.h
@@ -28,14 +28,6 @@ class OutputChannel {
public:
/**
- * Destructs an OutputChannel. This implementation does nothing,
- * but we need a virtual destructor for safety in case subclasses
- * have a destructor.
- */
- virtual ~OutputChannel() {
- }
-
- /**
* With safePoint(), the theory signals that it is at a safe point
* and can be interrupted.
*/
@@ -76,14 +68,6 @@ class ExplainOutputChannel {
public:
/**
- * Destructs an ExplainOutputChannel. This implementation does
- * nothing, but we need a virtual destructor for safety in case
- * subclasses have a destructor.
- */
- virtual ~ExplainOutputChannel() {
- }
-
- /**
* With safePoint(), the theory signals that it is at a safe point
* and can be interrupted. The default implementation never
* interrupts.
diff --git a/src/theory/theory.h b/src/theory/theory.h
index dffc99053..8b83f71cf 100644
--- a/src/theory/theory.h
+++ b/src/theory/theory.h
@@ -58,20 +58,12 @@ public:
static bool fullEffort(Effort e) { return e >= FULL_EFFORT; }
/**
- * Construct a Theory.
+ * Construct a theory.
*/
Theory() {
}
/**
- * Destructs a Theory. This implementation does nothing, but we
- * need a virtual destructor for safety in case subclasses have a
- * destructor.
- */
- virtual ~Theory() {
- }
-
- /**
* Prepare for a Node.
*
* When get() is called to get the next thing off the theory queue,
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback