summaryrefslogtreecommitdiff
path: root/src/theory/sep/theory_sep.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/sep/theory_sep.cpp')
-rw-r--r--src/theory/sep/theory_sep.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/theory/sep/theory_sep.cpp b/src/theory/sep/theory_sep.cpp
index 71cde2841..0107b80c8 100644
--- a/src/theory/sep/theory_sep.cpp
+++ b/src/theory/sep/theory_sep.cpp
@@ -200,15 +200,15 @@ void TheorySep::computeCareGraph() {
// MODEL GENERATION
/////////////////////////////////////////////////////////////////////////////
-
-void TheorySep::collectModelInfo( TheoryModel* m ){
+bool TheorySep::collectModelInfo(TheoryModel* m)
+{
set<Node> termSet;
// Compute terms appearing in assertions and shared terms
computeRelevantTerms(termSet);
// Send the equality engine information to the model
- m->assertEqualityEngine( &d_equalityEngine, &termSet );
+ return m->assertEqualityEngine(&d_equalityEngine, &termSet);
}
void TheorySep::postProcessModel( TheoryModel* m ){
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback