summaryrefslogtreecommitdiff
path: root/src/theory/theory_model.cpp
diff options
context:
space:
mode:
authorajreynol <andrew.j.reynolds@gmail.com>2016-12-02 08:51:29 -0600
committerajreynol <andrew.j.reynolds@gmail.com>2016-12-02 08:51:29 -0600
commit623e701247ed08e3f59d57b18ebe42f4d4db221e (patch)
tree663fa6451f9055a7256bd5c5ba4b558aeb58f46e /src/theory/theory_model.cpp
parent9d6a0bda98ac2c3e3c59f55f349e029d623b264a (diff)
Refactor preprocessing of models in fmf. Fix options --fmf-empty-sorts and --fmf-fun-rlv, fixes bug 723.
Diffstat (limited to 'src/theory/theory_model.cpp')
-rw-r--r--src/theory/theory_model.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/theory/theory_model.cpp b/src/theory/theory_model.cpp
index 3cdaeb106..71d82d5e4 100644
--- a/src/theory/theory_model.cpp
+++ b/src/theory/theory_model.cpp
@@ -602,7 +602,6 @@ void TheoryEngineModelBuilder::buildModel(Model* m, bool fullModel)
// model-builder specific initialization
preProcessBuildModel(tm, fullModel);
-
// Loop through all terms and make sure that assignable sub-terms are in the equality engine
// Also, record #eqc per type (for finite model finding)
std::map< TypeNode, unsigned > eqc_usort_count;
@@ -960,9 +959,6 @@ void TheoryEngineModelBuilder::buildModel(Model* m, bool fullModel)
tm->d_rep_set.add((*i).getType(), *i);
}
}
- for( std::map< TypeNode, std::vector< Node > >::iterator it = tm->d_rep_set.d_type_reps.begin(); it != tm->d_rep_set.d_type_reps.end(); ++it ){
- tm->d_rep_set.d_type_rlv_rep[it->first] = (int)it->second.size();
- }
}
//modelBuilder-specific initialization
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback