-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Consider changing return type of div
and divrem
for (::Unsigned, ::Signed)
#57855
Comments
But that would produce silently wrong results for huge
|
yeah good point. I guess a relatively decent option would be to OverflowError. |
I propose rather to throw runtime Exceptions in all cases of the division operations (as in done for |
And don't forget I think, the return type
In the presence of type promotion, The current implementation uses the promoted type, but does not throw in in all cases described above. |
Triage thinks that the funky behavior here should be documented but we don't want to add a breaking edge case or add an exception to promotion. |
I believe in common sense like I believe in miracles. But common sense discourages me to believe in miracles. |
Currently we have
This happens because we are returning the
promote_type
, but violates both common sense, and the documentation which states "Generally equivalent to a mathematical operation x/y without a fractional part".As such, I propose that we instead make the return type of
div(x,y)
beifelse(isa(y, Signed), signed(promote_type(x,y)), promote_type(x,y))
. This would obviously be slightly breaking, but I think it qualifies as a bugfix.We also would want to make similar changes for
divrem
,fld
,cld
since they all have the same problem.The text was updated successfully, but these errors were encountered: