Config

data class Config(val maxDistanceRatio: Double = 0.2, val minLengthForFuzzy: Int = 4, val minPartLength: Int = 4)

Constructors

Link copied to clipboard
constructor(maxDistanceRatio: Double = 0.2, minLengthForFuzzy: Int = 4, minPartLength: Int = 4)

Properties

Link copied to clipboard

Maximum Levenshtein distance (as a ratio of the shorter name length) to consider two names as matching. Default is 0.2 (20%).

Link copied to clipboard

Minimum name length to apply fuzzy matching. Short names are more prone to false positives.

Link copied to clipboard

Minimum part length for partial name matching.