Changeset 15981 for branches/2886_SymRegGrammarEnumeration/HeuristicLab.Algorithms.DataAnalysis.SymRegGrammarEnumeration/GrammarEnumeration/Symbol.cs
- Timestamp:
- 07/03/18 17:05:50 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2886_SymRegGrammarEnumeration/HeuristicLab.Algorithms.DataAnalysis.SymRegGrammarEnumeration/GrammarEnumeration/Symbol.cs
r15975 r15981 109 109 public int Count { get { return symbols.Count; } } 110 110 111 public bool IsReadOnly => throw new NotImplementedException(); 111 public bool IsReadOnly { 112 get { throw new NotImplementedException(); } 113 } 112 114 113 public Symbol this[int index] { get => throw new NotImplementedException(); set => throw new NotImplementedException(); } 115 public Symbol this[int index] { 116 get { throw new NotImplementedException(); } 117 set { throw new NotImplementedException(); } 118 } 114 119 115 120 public Production(params Symbol[] symbols) {
Note: See TracChangeset
for help on using the changeset viewer.