示例#1
0
 public ProductionKey(SymbolId productionSymbolId, SymbolIdSequence ruleSymbolIds)
 {
     this.ProductionSymbolId = productionSymbolId;
     this.RuleSymbolIds      = ruleSymbolIds;
 }
示例#2
0
 public ProductionRule(int index, SymbolId productionSymbolId, SymbolIdSequence ruleSymbolIds)
 {
     this.Index = index;
     this.ProductionSymbolId = productionSymbolId;
     this.RuleSymbolIds      = ruleSymbolIds;
 }