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
But this is inaccurate because MIN_POSITIVE is the smallest normal floating-point value; there are 2 ** 52 - 1 denormal floats smaller than that, and all of them do represent exact values, the smallest of which admits any of the following equivalent definitions:
Float64::MIN_POSITIVE
is the "Smallest representable positive value" forFloat64
, and similarly forFloat32
:But this is inaccurate because
MIN_POSITIVE
is the smallest normal floating-point value; there are2 ** 52 - 1
denormal floats smaller than that, and all of them do represent exact values, the smallest of which admits any of the following equivalent definitions:Or, for
Float32
:I suggest we add these constants as
MIN_DENORMAL
, and then adjustMIN_POSITIVE
's docs accordingly.The text was updated successfully, but these errors were encountered: