コード例 #1
0
 /// <summary>
 ///     Initializes a new instance of the <see cref="DiceCoefficient{T}" /> class.
 /// </summary>
 public DiceCoefficient()
 {
     _qgramLength = TypeConversion.GetQgramLength <T>();
 }
コード例 #2
0
ファイル: QGramSet.cs プロジェクト: Rozinek/BlueSimilarity
 public QGramSet()
 {
     _qGramsDictionary = new Dictionary <string, int>();
     QGramLength       = TypeConversion.GetQgramLength <T>();
 }