コード例 #1
0
ファイル: JaccardScorer.java プロジェクト: lyhong508/DStc
 /*
  * Gets the total words in between two files
  */
 public int getTotalWords(JaccardScorer js) {
   return words.size() + js.getWordCount() - this.getCommonWords(js);
 }