1 /*!
  2  * @include "_InternalClasses.js"
  3  */
  4 
  5 /**
  6  * 類似度比較の基準となる文字列。Evaluateで、この文字列との類似度が得られる。
  7  * 
  8  * Action:○ LateCall:○ Command:○
  9  * 
 10  * @type String
 11  */
 12 _JVS.CosSim.prototype.Subject = "";
 13 
 14 /**
 15  * SubjectとStrの類似度を算出する
 16  * 
 17  * Action:○ LateCall:○ Command:○
 18  * 
 19  * @param {String} Str Subjectと比較する文字列
 20  * @return float SubjectとStrの類似度
 21  */
 22 _JVS.CosSim.prototype.Evaluate = function(Str){return 0.5;};
 23 
 24