mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
force to_fp to disambiguate +zero and -zero, #6548, filter unsupported on relevancy
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
47c7ed3b17
commit
eac7d7576f
|
@ -2809,6 +2809,8 @@ void fpa2bv_converter::mk_to_fp_real(func_decl * f, sort * s, expr * rm, expr *
|
|||
|
||||
expr * e = m.mk_eq(m_util.mk_to_real(result), x);
|
||||
m_extra_assertions.push_back(e);
|
||||
// x = 0 -> result = 0+
|
||||
m_extra_assertions.push_back(m.mk_implies(m.mk_eq(x, zero), m.mk_eq(result, m_util.mk_pzero(result->get_sort()))));
|
||||
}
|
||||
|
||||
SASSERT(is_well_sorted(m, result));
|
||||
|
|
|
@ -1653,7 +1653,7 @@ public:
|
|||
return FC_CONTINUE;
|
||||
}
|
||||
for (expr* e : m_not_handled) {
|
||||
if (!ctx().is_relevant(e) && false)
|
||||
if (!ctx().is_relevant(e))
|
||||
continue;
|
||||
st = FC_DONE;
|
||||
switch (eval_unsupported(e)) {
|
||||
|
|
Loading…
Reference in a new issue