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
The ranges of float-to-integer conversions appear to be inconsistent with all approximation schemes except RoundToNegInf. For example, consider RoundToZero, which rounds
255.5 to 255
-255.5 to -255
Yet, despite this, -256.5 does not round to -256, but instead causes NegOverflow.
The text was updated successfully, but these errors were encountered:
The ranges of float-to-integer conversions appear to be inconsistent with all approximation schemes except
RoundToNegInf
. For example, considerRoundToZero
, which rounds255.5
to255
-255.5
to-255
Yet, despite this,
-256.5
does not round to-256
, but instead causesNegOverflow
.The text was updated successfully, but these errors were encountered: