Example #1
0
 public void addMatch(EdictMatchWithType match, InflectionState inf, double score)
 {
     this.matches.Add(Tuple.Create(match, inf, score));
     this.matches.Sort(sortByDescendingScore);
 }
Example #2
0
 public WordParseResult(string originalText, EdictMatchWithType match, InflectionState inf, double score)
 {
     this.originalText = originalText;
     this.addMatch(match, inf, score);
 }