We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e545836 commit edab286Copy full SHA for edab286
src/intervals/exact_literals.jl
@@ -116,19 +116,6 @@ has_exact_display(x::Real) = string(x) == string(ExactReal(x))
116
117
#
118
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
132
"""
133
@exact
134
0 commit comments