Skip to content

Commit edab286

Browse files
authored
Remove unused code
1 parent e545836 commit edab286

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

src/intervals/exact_literals.jl

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -116,19 +116,6 @@ has_exact_display(x::Real) = string(x) == string(ExactReal(x))
116116

117117
#
118118

119-
struct ExactIm end
120-
121-
Base.:*(x::ExactReal, ::ExactIm) = complex(ExactReal(zero(x.value)), x)
122-
Base.:*(::ExactIm, x::ExactReal) = complex(ExactReal(zero(x.value)), x)
123-
124-
Base.:*(x::Real, ::ExactIm) = complex(zero(x), x)
125-
Base.:*(::ExactIm, x::Real) = complex(zero(x), x)
126-
127-
Base.:*(x::Complex, ::ExactIm) = complex(-imag(x), real(x))
128-
Base.:*(::ExactIm, x::Complex) = complex(-imag(x), real(x))
129-
130-
#
131-
132119
"""
133120
@exact
134121

0 commit comments

Comments
 (0)