Skip to content

Commit 0cf1820

Browse files
committed
Remove unnecessary specialization
1 parent acf36f2 commit 0cf1820

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/algorithms.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Finally, the same behavior is obtained when the keyword arguments are
7676
passed as the third positional argument in the form of a `NamedTuple`.
7777
""" select_algorithm
7878

79-
function select_algorithm(f::F, A::T, alg::Alg=nothing; kwargs...) where {F,T,Alg}
79+
function select_algorithm(f::F, A, alg::Alg=nothing; kwargs...) where {F,Alg}
8080
if isnothing(alg)
8181
return default_algorithm(f, A; kwargs...)
8282
elseif alg isa Symbol

0 commit comments

Comments
 (0)