DistResult {Microsoft.VisualBasic.ComponentModel.Algorithm.DynamicProgramming.Levenshtein} .NET clr documentation

DistResult

Description

Declare

            
# namespace Microsoft.VisualBasic.ComponentModel.Algorithm.DynamicProgramming.Levenshtein
export class DistResult {
   Distance: double;
   # How doest the DistResult.Hypotheses evolve from DistResult.Reference.(这个结果描述了subject是如何变化成为Query的)
   DistEdits: string;
   DistTable: ArrayRow[];
   Hypotheses: string;
   Matches: string;
   # m+ scores.(0-1之间)
   MatchSimilarity: double;
   # 比对上的对象的数目
   NumMatches: integer;
   Path: Coordinate[];
   Reference: string;
   # 可以简单地使用这个数值来表述所比较的两个对象之间的相似度
   Score: double;
}

        

.NET clr type reference tree

  1. use by property member DistTable: ArrayRow
  2. use by property member Path: Coordinate

[Package {$package} version {$version} Index]