File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/main/java/org/cicirello/sequences/distance Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 26
26
/**
27
27
* EditDistanceDouble is an implementation of Wagner and Fischer's dynamic programming algorithm for
28
28
* computing string edit distance. This class supports double-valued costs, while the {@link
29
- * EditDistance} class supports int-valued costs. If your costs are
30
- * int-valued, the {@link EditDistance} class may be slightly faster, but not asymptotically faster.
29
+ * EditDistance} class supports int-valued costs. If your costs are int-valued, the {@link
30
+ * EditDistance} class may be slightly faster, but not asymptotically faster.
31
31
*
32
32
* <p>Edit distance is the minimum cost to transform one string (or sequence) into the other, which
33
33
* is the sum of the costs of the edit operations necessary to do so. This edit distance considers 3
You can’t perform that action at this time.
0 commit comments