SimMetrics.Net icon indicating copy to clipboard operation
SimMetrics.Net copied to clipboard

SimMetrics is a Similarity Metric Library, e.g. from edit distance's (Levenshtein, Gotoh, Jaro etc) to other metrics, (e.g Soundex, Chapman). This library support multiple .NET versions including .NET...

Results 3 SimMetrics.Net issues
Sort by recently updated
recently updated
newest added

ChapmanMeanLength always returns 9.xx regardless of the inputs. Here's the result when comparing "**David**" to the following associated strings: ```` David 9.223682 Dave 9.299208 Davdi 9.223682 Dadiv 9.223682 david 9.223682...

`NeedlemanWunch("aaa", "bbb")` returns 0.5. In fact, this function is always above or equal to 0.5 ``` c# static NeedlemanWunch needleman_wunch = null; public static double NeedlemanWunch(string firstWord, string secondWord) {...