mirror of
https://github.com/Z3Prover/z3
synced 2025-08-17 00:32:16 +00:00
Corrected unspecified behavior of fp.min/fp.max corner cases in fpa2bv_converter and in theory_fpa.
Fixes #68
This commit is contained in:
parent
8a026c355f
commit
de39173f6f
7 changed files with 90 additions and 20 deletions
|
@ -137,8 +137,10 @@ public:
|
|||
void mk_to_real(func_decl * f, unsigned num, expr * const * args, expr_ref & result);
|
||||
|
||||
void set_unspecified_fp_hi(bool v) { m_hi_fp_unspecified = v; }
|
||||
expr_ref mk_min_unspecified(func_decl * f, expr * x, expr * y);
|
||||
expr_ref mk_max_unspecified(func_decl * f, expr * x, expr * y);
|
||||
|
||||
virtual expr_ref mk_min_unspecified(func_decl * f, expr * x, expr * y);
|
||||
virtual expr_ref mk_max_unspecified(func_decl * f, expr * x, expr * y);
|
||||
|
||||
expr_ref mk_to_ubv_unspecified(unsigned width);
|
||||
expr_ref mk_to_sbv_unspecified(unsigned width);
|
||||
expr_ref mk_to_real_unspecified();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue