felixvf (Felix von Ferey)
- Login: felixvf
- Registered on: 10/03/2016
- Last sign in: 08/23/2020
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
10/03/2016
-
01:23 PM Ruby Bug #12805 (Closed): MRI BigDecimal#div produces grossly wrong result
- ### Expected
(It works in JRuby-9.1.5.0)
~~~
# ruby -e 'require "bigdecimal"; (1...50).each do |i| puts (BigDecimal.new("1").div(BigDecimal.new("0.22E0"),i)).to_s; end'
0.5E1
0.45E1
0.455E1
0.4545E1
0.45455E1
0.454545E1
0.4...