Text 0.6.0 minhashpermutations addend - CyrilB1531/lodestar GitHub Wiki
Lodestar.Text 0.6.0. This page is frozen at that release. Read the current documentation for what
mainsays now. A link to a decision or a migration page followsmain, and leaves the archive.
MinHashPermutations.Addend
The b coefficient of one permutation.
public ulong Addend(int index)
Parameters — index is which permutation, from zero.
Returns — ulong, the addend supplied for it.
Exceptions — ArgumentOutOfRangeException when index is outside the set.
Example — the shape a caller writes.
using Lodestar.Text.Similarity;
var permutations = new MinHashPermutations([3UL, 5UL], [13UL, 17UL]);
ulong second = permutations.Addend(1); // => 17
Applies to — net10.0, netstandard2.0.
See also — MinHashPermutations.Multiplier.