Actions
Bug #6944
closedBigDecimal#to_f breaks for numbers too small to be representable in Float
Description
BigDecimal numbers too small to be representable in Float are incorrectly converted to +/-Infinity instead of 0.0 (or -0.0). Things seem to broke down when exponent is about -308.
with 307, ok¶
BigDecimal('1e-307').to_f
=> 1.0e-307¶
BigDecimal('-1e-307').to_f
=> -1.0e-307¶
with 308, broken but signedness is correct¶
BigDecimal('1e-308').to_f
=> Infinity¶
BigDecimal('-1e-308').to_f
=> -Infinity¶
with 350 not even signedness is correct¶
BigDecimal('1e-350').to_f
=> -Infinity¶
BigDecimal('-1e-350').to_f
=> -Infinity¶
Workaround: resort to BigDecimal#to_s and Float(.)¶
x=BigDecimal('1e-350')
Float(x.to_s)
Actions
Like0
Like0