예제 #1
0
파일: Lexeme.cs 프로젝트: carbon/Language
 public void Add(string type, Term term)
 {
     items.Add(type, term);
 }
예제 #2
0
 public WeightedTerm(Term term, float weight)
     : base(term)
 {
     this.weight = weight;
 }
예제 #3
0
파일: Lexeme.cs 프로젝트: carbon/Language
 public Lexeme(Term term)
 {
     this.term = term;
 }