3
0
Fork 0
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:
Christoph M. Wintersteiger 2014-12-29 17:09:28 +00:00
parent 33af7e8468
commit defb6158fe

View file

@ -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";