3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-24 23:03:41 +00:00

updates to model generation

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2018-01-11 11:20:23 -08:00
parent c80f34102f
commit 1c2966f8e9
6 changed files with 21 additions and 22 deletions

View file

@ -25,6 +25,7 @@ Notes:
*/
void model_converter::display_add(std::ostream& out, ast_manager& m, func_decl* f, expr* e) const {
VERIFY(m_env);
VERIFY(f->get_range() == m.get_sort(e));
ast_smt2_pp(out, f, e, *m_env, params_ref(), 0, "model-add") << "\n";
}