Skip to content

Commit

Permalink
modified the odd one out
Browse files Browse the repository at this point in the history
  • Loading branch information
dawnandrew100 authored Nov 19, 2024
1 parent 02a3a2b commit a3fc928
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions goombay/algorithms/editdistance.py
Original file line number Diff line number Diff line change
Expand Up @@ -614,7 +614,7 @@ def matrix(self, querySequence: str, subjectSequence: str) -> NDArray[float64]:
self.alignment_score[i][j] = dmatch
return self.alignment_score

class JaroWinkler(Jaro):
class Jaro_Winkler(Jaro):
def __init__(self, scaling_factor = 0.1):
self.match_score = 1
self.winkler = True
Expand Down Expand Up @@ -792,7 +792,7 @@ def distance(self, querySequence: str, subjectSequence: str)->float:
smith_waterman = Smith_Waterman()
hirschberg = Hirschberg()
jaro = Jaro()
jaro_winkler = JaroWinkler()
jaro_winkler = Jaro_Winkler()
lowrance_wagner = Lowrance_Wagner()
longest_common_subsequence = Longest_Common_Subsequence()
shortest_common_supersequence = Shortest_Common_Supersequence()
Expand Down

0 comments on commit a3fc928

Please sign in to comment.