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
This is because we got 99999999999994600 when computing, which is larger than Math.pow(2, 53) = 9007199254740992, so the result is not reliable. Right now I'm thinking of a work around for this case. But this library can not handle big numbers very well since the limitation of JavaScript native number.
NP.times(9999999999999.46, 100) ==> 999999999999945.9
13位9
The result is not equal to 999999999999946
The text was updated successfully, but these errors were encountered: