mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 17:45:32 +00:00
Bugfix for fpa2bv converter.
This commit is contained in:
parent
9b5abcd55a
commit
ed94bc2f6b
2 changed files with 8 additions and 1 deletions
|
@ -79,6 +79,13 @@ model_converter * fpa2bv_model_converter::translate(ast_translation & translator
|
|||
translator.to().inc_ref(k);
|
||||
translator.to().inc_ref(v);
|
||||
}
|
||||
for (obj_hashtable<func_decl>::iterator it = m_decls_to_hide.begin();
|
||||
it != m_decls_to_hide.end();
|
||||
it++) {
|
||||
func_decl * k = translator(*it);
|
||||
res->m_decls_to_hide.insert(*it);
|
||||
translator.to().inc_ref(*it);
|
||||
}
|
||||
return res;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue