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
julia>convert(Int64, BigInt("172293789645374271893931539237738556000"))
ERROR:InexactError()
in convert at gmp.jl:108
julia>convert(Int128, BigInt("172293789645374271893931539237738556000"))
167988577275564191569443068194029655456
The text was updated successfully, but these errors were encountered:
All of our integer conversions are unchecked (#5413). I'm not sure why that one conversion has an InexactError but it might have to do with the behavior of GMP's API here.
As uncovered in #6163:
The text was updated successfully, but these errors were encountered: