示例#1
0
        public float GetScore()
        {
            BipartiteMatcher match = new BipartiteMatcher(_leftTokens, _rightTokens, cost);

            return(match.Score);
        }
 public float GetScore()
 {
     BipartiteMatcher match = new BipartiteMatcher(_leftTokens, _rightTokens, cost);
     return match.Score;
 }