public FuzzyMatcher(IEnumerable <string> candidates,
                     ScoreWeights definition, decimal threshold = ScoreWeights.DefaultScore)
 {
     _candidates = candidates.ToArray();
     _definition = definition;
     _threshold  = threshold;
 }
 public FuzzyMatcher(IEnumerable <string> candidates)
 {
     _candidates = candidates.ToArray();
     _definition = new ScoreWeights();
 }