mirror of
https://github.com/Z3Prover/z3
synced 2025-04-22 16:45:31 +00:00
Bugfix for mpf.is_regular
This commit is contained in:
parent
8c3fc574d1
commit
0caf3bd18c
1 changed files with 1 additions and 1 deletions
|
@ -169,7 +169,7 @@ public:
|
|||
bool is_ninf(mpf const & x);
|
||||
bool is_normal(mpf const & x);
|
||||
bool is_denormal(mpf const & x);
|
||||
bool is_regular(mpf const & x) { return x.sbits == 0 || is_normal(x) || is_denormal(x); }
|
||||
bool is_regular(mpf const & x) { return x.sbits == 0 || is_zero(x) || is_normal(x) || is_denormal(x); }
|
||||
|
||||
bool is_int(mpf const & x);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue