Searched defs:Levenshtein (Results 1 – 2 of 2) sorted by relevance
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/algorithm/ |
H A D | comparison.d | 1020 private struct Levenshtein(Range, alias equals, CostType = size_t) struct 1022 EditOp[] path() in path() 1059 ~this() { in ~this() 1068 size_t rows, cols; 1071 ref CostType matrix(size_t row, size_t col) { return _matrix[row * cols + col]; } in matrix() 1073 void AllocMatrix(size_t r, size_t c) @trusted { in AllocMatrix() 1094 void FreeMatrix() @trusted { in FreeMatrix() 1101 void InitMatrix() { in InitMatrix() 1108 static uint min_index(CostType i0, CostType i1, CostType i2) in min_index() 1120 CostType distanceWithPath(Range s, Range t) in distanceWithPath() [all …]
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/algorithm/ |
H A D | comparison.d | 1256 private struct Levenshtein(Range, alias equals, CostType = size_t) struct 1258 EditOp[] path() in path() 1295 ~this() { in ~this() 1304 size_t rows, cols; 1307 ref CostType matrix(size_t row, size_t col) { return _matrix[row * cols + col]; } in matrix() 1309 void AllocMatrix(size_t r, size_t c) @trusted { in AllocMatrix() 1332 void FreeMatrix() @trusted { in FreeMatrix() 1339 void InitMatrix() { in InitMatrix() 1346 static uint min_index(CostType i0, CostType i1, CostType i2) in min_index() 1358 CostType distanceWithPath(Range s, Range t) in distanceWithPath() [all …]
|