You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 18, 2024. It is now read-only.
Nick,
The code has the following branch:
if (value > thres_max) {
sprintf(str, "%e", neg ? -value : value);
return;
}
This is wrong as it ignores requested precision - sprintf uses 6 precision by
default.
Original issue reported on code.google.com by ilya.m...@gmail.com on 10 Jun 2010 at 8:56