3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-10-08 08:51:55 +00:00

Bugfix for FP theory; handling of UFs and interpreted functions from other theories.

This commit is contained in:
Christoph M. Wintersteiger 2015-08-27 18:17:26 +01:00
parent 8c11299be6
commit 081ba9093a
5 changed files with 89 additions and 51 deletions

View file

@ -176,7 +176,7 @@ struct fpa2bv_rewriter_cfg : public default_rewriter_cfg {
}
}
if (f->get_family_id() == null_family_id)
if (f->get_family_id() != m_conv.fu().get_family_id())
{
bool is_float_uf = m_conv.is_float(f->get_range());
unsigned i = 0;