summaryrefslogtreecommitdiff
path: root/src/theory/arith/theory_arith.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/arith/theory_arith.cpp')
-rw-r--r--src/theory/arith/theory_arith.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/theory/arith/theory_arith.cpp b/src/theory/arith/theory_arith.cpp
index 985799e88..e354305d7 100644
--- a/src/theory/arith/theory_arith.cpp
+++ b/src/theory/arith/theory_arith.cpp
@@ -106,9 +106,9 @@ bool TheoryArith::isExtfReduced( int effort, Node n, Node on, std::vector< Node
void TheoryArith::propagate(Effort e) {
d_internal->propagate(e);
}
-
-void TheoryArith::collectModelInfo( TheoryModel* m ){
- d_internal->collectModelInfo(m);
+bool TheoryArith::collectModelInfo(TheoryModel* m)
+{
+ return d_internal->collectModelInfo(m);
}
void TheoryArith::notifyRestart(){
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback