mirror of
https://github.com/Z3Prover/z3
synced 2025-04-13 12:28:44 +00:00
Bugfix for FP to BV conversion of UFs
This commit is contained in:
parent
0ed38ed59b
commit
336fa6ae83
|
@ -176,7 +176,7 @@ struct fpa2bv_rewriter_cfg : public default_rewriter_cfg {
|
|||
}
|
||||
}
|
||||
|
||||
if (f->get_family_id() != m_conv.fu().get_family_id())
|
||||
if (f->get_family_id() != 0 && f->get_family_id() != m_conv.fu().get_family_id())
|
||||
{
|
||||
bool is_float_uf = m_conv.is_float(f->get_range());
|
||||
unsigned i = 0;
|
||||
|
|
Loading…
Reference in a new issue