Skip to content
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

should x // y such that iszero(x) && iszero(y) throw an ArgumentError or a DivideError? #56754

Open
nsajko opened this issue Dec 4, 2024 · 1 comment
Labels
error handling Handling of exceptions by Julia or the user maths Mathematical functions rationals The Rational type and values thereof

Comments

@nsajko
Copy link
Contributor

nsajko commented Dec 4, 2024

The fact that dividing zero by zero throws DivideError in some cases, but ArgumentError in other cases seems inconsistent:

julia> 0 // 0
ERROR: ArgumentError: invalid rational: zero(Int64)//zero(Int64)
Stacktrace:
 [1] __throw_rational_argerror_zero(T::Type)
   @ Base ./rational.jl:30
 [2] Rational
   @ ./rational.jl:32 [inlined]
 [3] Rational
   @ ./rational.jl:48 [inlined]
 [4] //(n::Int64, d::Int64)
   @ Base ./rational.jl:84
 [5] top-level scope
   @ REPL[15]:1

julia> (0 // 1) // 0
ERROR: DivideError: integer division error
Stacktrace:
 [1] div
   @ ./int.jl:297 [inlined]
 [2] div
   @ ./int.jl:229 [inlined]
 [3] divgcd(x::Int64, y::Int64)
   @ Base ./rational.jl:54
 [4] //(x::Rational{Int64}, y::Int64)
   @ Base ./rational.jl:87
 [5] top-level scope
   @ REPL[16]:1

FWIW:

julia> Base.infer_exception_type(//, Tuple{Int, Int})
Union{DivideError, ArgumentError, OverflowError}

julia> Base.infer_exception_type(//, Tuple{Int, Rational{Int}})
Union{DivideError, OverflowError}

julia> Base.infer_exception_type(//, Tuple{Rational{Int}, Int})
Union{DivideError, OverflowError}

julia> Base.infer_exception_type(//, Tuple{Rational{Int}, Rational{Int}})
Union{DivideError, OverflowError}

Should 0 // 0 be changed to throw DivideError? Should (0 // 1) // 0 be changed to throw ArgumentError?

The specific reason I'm interested in this inconsistency is that I'm implementing a type very similar to Rational in a package. So I need to decide what to throw there.

@nsajko nsajko added error handling Handling of exceptions by Julia or the user maths Mathematical functions rationals The Rational type and values thereof labels Dec 4, 2024
@nhz2
Copy link
Contributor

nhz2 commented Dec 5, 2024

Linking a related discussion in: #25702

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
error handling Handling of exceptions by Julia or the user maths Mathematical functions rationals The Rational type and values thereof
Projects
None yet
Development

No branches or pull requests

2 participants