summaryrefslogtreecommitdiff
path: root/src/theory/theory.h
diff options
context:
space:
mode:
authorTim King <taking@google.com>2017-03-27 10:24:13 -0700
committerTim King <taking@google.com>2017-03-27 10:24:13 -0700
commit4930de53415ffbf614d6965af59b1f44e405451c (patch)
tree5fb07f7dfbf7b358c6d79a92d8af6376e33147cf /src/theory/theory.h
parent09d14ac7f81111882327cb168f100e9f998611ac (diff)
Making ppNotifyAssertions take a const vector.
Diffstat (limited to 'src/theory/theory.h')
-rw-r--r--src/theory/theory.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/theory/theory.h b/src/theory/theory.h
index 5701f0a7b..ce94e362e 100644
--- a/src/theory/theory.h
+++ b/src/theory/theory.h
@@ -582,12 +582,12 @@ public:
* Don't preprocess subterm of this term
*/
virtual bool ppDontRewriteSubterm(TNode atom) { return false; }
-
- /** notify preprocessed assertions
- * Called on new assertions after preprocessing before they are asserted to theory engine.
- * Should not modify assertions.
- */
- virtual void ppNotifyAssertions( std::vector< Node >& assertions ) {}
+
+ /**
+ * Notify preprocessed assertions. Called on new assertions after
+ * preprocessing before they are asserted to theory engine.
+ */
+ virtual void ppNotifyAssertions(const std::vector<Node>& assertions) {}
/**
* A Theory is called with presolve exactly one time per user
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback