summaryrefslogtreecommitdiff
path: root/src/theory/theory_engine.cpp
diff options
context:
space:
mode:
authorClark Barrett <barrett@cs.nyu.edu>2012-11-15 02:14:42 +0000
committerClark Barrett <barrett@cs.nyu.edu>2012-11-15 02:14:42 +0000
commitdc0372a91ae46e6fc5ead1f51a1fe033cfd19944 (patch)
treea45d1ae09a4026f516af9e68e37cab4cc76d2506 /src/theory/theory_engine.cpp
parent0cf2cf65658ce8128d0cc87d6a9714b5284d45c4 (diff)
Fixed another AUFBV model bug. BV equality subtheory needed to do something
similar to arrays - limit the set of terms reported to those relevant in the current context. Also removed collectModelInfo from sharedTermsDatabase - doesn't seem to be needed any more.
Diffstat (limited to 'src/theory/theory_engine.cpp')
-rw-r--r--src/theory/theory_engine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/theory_engine.cpp b/src/theory/theory_engine.cpp
index 9d93c6cc0..c32f36275 100644
--- a/src/theory/theory_engine.cpp
+++ b/src/theory/theory_engine.cpp
@@ -546,7 +546,7 @@ bool TheoryEngine::properExplanation(TNode node, TNode expl) const {
void TheoryEngine::collectModelInfo( theory::TheoryModel* m, bool fullModel ){
//have shared term engine collectModelInfo
- d_sharedTerms.collectModelInfo( m, fullModel );
+ // d_sharedTerms.collectModelInfo( m, fullModel );
// Consult each active theory to get all relevant information
// concerning the model.
for(TheoryId theoryId = theory::THEORY_FIRST; theoryId < theory::THEORY_LAST; ++theoryId) {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback