Skip to content

Commit 8f5a476

Browse files
committed
ULPError: delete unnecessary method static parameters
Specialization on the callable argument types should happen anyway.
1 parent e791ac5 commit 8f5a476

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/testhelpers/ULPError.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ module ULPError
3333
end
3434
abs(Float32((approximate - acc) / eps(approximate))::Float32)
3535
end
36-
function ulp_error(accurate::Acc, approximate::App, x::AbstractFloat) where {Acc, App}
36+
function ulp_error(accurate, approximate, x::AbstractFloat)
3737
acc = accurate(x)
3838
app = approximate(x)
3939
ulp_error(acc, app)

0 commit comments

Comments
 (0)