Skip to content

Commit f2c4b76

Browse files
committed
doc edits
1 parent 15096a1 commit f2c4b76

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/main/java/org/cicirello/sequences/distance/EditDistanceDouble.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* JavaPermutationTools: A Java library for computation on permutations and sequences
3-
* Copyright 2005-2022 Vincent A. Cicirello, <https://www.cicirello.org/>.
3+
* Copyright 2005-2023 Vincent A. Cicirello, <https://www.cicirello.org/>.
44
*
55
* This file is part of JavaPermutationTools (https://jpt.cicirello.org/).
66
*
@@ -26,9 +26,8 @@
2626
/**
2727
* EditDistanceDouble is an implementation of Wagner and Fischer's dynamic programming algorithm for
2828
* computing string edit distance. This class supports double-valued costs, while the {@link
29-
* EditDistance} class supports both double-valued as well as int-valued costs. If your costs are
29+
* EditDistance} class supports int-valued costs. If your costs are
3030
* int-valued, the {@link EditDistance} class may be slightly faster, but not asymptotically faster.
31-
* If your costs are double-valued, there should be no difference (one is a subclass of the other).
3231
*
3332
* <p>Edit distance is the minimum cost to transform one string (or sequence) into the other, which
3433
* is the sum of the costs of the edit operations necessary to do so. This edit distance considers 3

0 commit comments

Comments
 (0)