File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
src/main/java/org/cicirello/sequences/distance Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 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 *
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
You can’t perform that action at this time.
0 commit comments