3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-03-17 02:30:01 +00:00

print model-add in display method

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2017-11-21 21:26:07 -08:00
parent 2313b14210
commit 107bfb1438
5 changed files with 17 additions and 13 deletions

View file

@ -58,7 +58,7 @@ void generic_model_converter::display(std::ostream & out) {
display_del(out, e.m_f);
}
for (entry const& e : m_add_entries) {
display_del(out, e.m_f);
display_add(out, m, e.m_f, e.m_def);
}
}