summaryrefslogtreecommitdiff
path: root/src/theory/theory_model.cpp
diff options
context:
space:
mode:
authorajreynol <andrew.j.reynolds@gmail.com>2015-09-16 11:07:36 +0200
committerajreynol <andrew.j.reynolds@gmail.com>2015-09-16 11:07:36 +0200
commit548582b252170f35a602705a109d88a608611cca (patch)
treeabcfe42578de4b4a99905ed76e1df23c396820ef /src/theory/theory_model.cpp
parentbad7f4fe4dca4c6511c2862bf81b6791640ac78f (diff)
Add option --fmf-fun-rlv, remove deprecated option --axiom-inst.
Diffstat (limited to 'src/theory/theory_model.cpp')
-rw-r--r--src/theory/theory_model.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/theory/theory_model.cpp b/src/theory/theory_model.cpp
index c4bc94bd2..92f834bff 100644
--- a/src/theory/theory_model.cpp
+++ b/src/theory/theory_model.cpp
@@ -824,6 +824,9 @@ 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