summaryrefslogtreecommitdiff
path: root/src/theory/bv/bv_subtheory_algebraic.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/bv/bv_subtheory_algebraic.cpp')
-rw-r--r--src/theory/bv/bv_subtheory_algebraic.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/theory/bv/bv_subtheory_algebraic.cpp b/src/theory/bv/bv_subtheory_algebraic.cpp
index e5a416a1b..80a6aeb86 100644
--- a/src/theory/bv/bv_subtheory_algebraic.cpp
+++ b/src/theory/bv/bv_subtheory_algebraic.cpp
@@ -715,7 +715,8 @@ bool AlgebraicSolver::collectModelInfo(TheoryModel* model, bool fullModel)
Debug("bitvector-model") << "AlgebraicSolver::collectModelInfo\n";
AlwaysAssert(!d_quickSolver->inConflict());
set<Node> termSet;
- d_bv->computeRelevantTerms(termSet);
+ const std::set<Kind>& irrKinds = model->getIrrelevantKinds();
+ d_bv->computeAssertedTerms(termSet, irrKinds, true);
// collect relevant terms that the bv theory abstracts to variables
// (variables and parametric terms such as select apply_uf)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback