3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 17:44:08 +00:00

don't crash when a function doesn't have a model when converting a solver to string

This commit is contained in:
Nuno Lopes 2023-09-18 10:16:19 +01:00
parent ff33fa355a
commit b1c52c0b16

View file

@ -24,7 +24,8 @@ Notes:
* Add or overwrite value in model.
*/
void model_converter::display_add(std::ostream& out, smt2_pp_environment& env, ast_manager& m, func_decl* f, expr* e) {
VERIFY(e);
if (!e)
return;
VERIFY(f->get_range() == e->get_sort());
ast_smt2_pp_rev(out, f, e, env, params_ref(), 0, "model-add") << "\n";
}