chasonr (Ray Chason)
- Login: chasonr
- Registered on: 04/15/2021
- Last sign in: 07/27/2024
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
04/15/2021
-
01:17 AM Ruby Bug #17804 (Closed): Math.cbrt(0.0) returns NaN
- Math.cbrt(0.0) returns NaN. It should return 0.0.
From reading the implementation, I expect this bug to happen only if glibc is in use. The failing section reads:
#if defined __GLIBC__
if (isfinite(r)) {
r = (2.0 * r + (f / ...