Update edit.jl

pull/57/head
matthieugomez 2021-09-13 11:46:18 -04:00
parent 04a3fc587e
commit ae284ff6d2
1 changed files with 1 additions and 5 deletions

View File

@ -19,7 +19,6 @@ function (dist::Hamming)(s1, s2; max_dist::Union{Integer, Nothing} = nothing)
return out
end
"""
Jaro()
@ -78,7 +77,6 @@ function (dist::Jaro)(s1, s2)
end
end
"""
JaroWinkler(;p = 0.1, threshold = 0.3, maxlength = 4)
@ -106,7 +104,6 @@ function (dist::JaroWinkler)(s1, s2)
return out
end
"""
Levenshtein()
@ -241,7 +238,6 @@ function (dist::OptimalStringAlignement)(s1, s2; max_dist::Union{Integer, Nothin
return current
end
"""
DamerauLevenshtein()
@ -356,4 +352,4 @@ function longest_common_pattern!(p, s1, s2, start1, start2, end1, end2)
end
end
return j1, j2, len
end
end