4 packages tagged with “softwx”
Package Description
Library (.Net Standard 1.0) to support text and person name matching. Currently contains Levenshtein and Damerau-Levenshtein (optimal string alignment version) edit distance and normalized similarity functions optimized for speed and reduced memory consumption. There are also versions of the functions that accept a maximum desired distance or minimum desired similarity, which can result in significantly faster speeds, particularly for long strings. This is one of the faster C# implementations available (possibly the fastest for non-trivial strings). See the associated GitHub project for more detail. MIT License
Library containing a UInt128 class, and extensions to .Net's built in integral data types. The version targeting .Net 4.5 is implemented as a Portable Class Library. The methods in this library were written with speed in mind. UInt128 operations are generally much faster than BigInteger. Includes an IsPrime method for ulong that's pretty fast even for ulong values near MaxValue, as it uses the Miller-Rabin algorithm that's deterministic (not probable) over the range of ulong values.
Assembly containing methods to support benchmarking speed and memory consumption of .Net code.