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 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 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.
3131 *
3232 * <p>Edit distance is the minimum cost to transform one string (or sequence) into the other, which
3333 * 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