mirror of
https://github.com/Z3Prover/z3
synced 2025-04-08 18:31:49 +00:00
MPF: bugfix
Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
parent
33af7e8468
commit
defb6158fe
|
@ -1174,7 +1174,7 @@ std::string mpf_manager::to_string(mpf const & x) {
|
|||
if (is_nan(x))
|
||||
res = "NaN";
|
||||
else {
|
||||
res = sgn(x) ? "-" : "+";
|
||||
res = sgn(x) ? "-" : "";
|
||||
|
||||
if (is_inf(x))
|
||||
res += "INF";
|
||||
|
|
Loading…
Reference in a new issue