Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
OlivierHnt committed Jan 15, 2024
1 parent b30d479 commit 7a5f0a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/intervals/arithmetic/trigonometric.jl
Original file line number Diff line number Diff line change
Expand Up @@ -242,8 +242,8 @@ function Base.tan(x::BareInterval{T}) where {T<:AbstractFloat}

lo, hi = bounds(x)

@show lo_quadrant = _quadrant(lo)
@show hi_quadrant = _quadrant(hi)
lo_quadrant = _quadrant(lo)
hi_quadrant = _quadrant(hi)
lo_quadrant_mod = mod(lo_quadrant, 2)
hi_quadrant_mod = mod(hi_quadrant, 2)

Expand Down

0 comments on commit 7a5f0a8

Please sign in to comment.