Changeset 16019 for branches/2886_SymRegGrammarEnumeration/HeuristicLab.Algorithms.DataAnalysis.SymRegGrammarEnumeration/GrammarEnumeration/Symbol.cs
- Timestamp:
- 07/26/18 12:39:53 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2886_SymRegGrammarEnumeration/HeuristicLab.Algorithms.DataAnalysis.SymRegGrammarEnumeration/GrammarEnumeration/Symbol.cs
r15981 r16019 110 110 111 111 public bool IsReadOnly { 112 get { throw new NotImplementedException(); }112 get { return false; } 113 113 } 114 114 115 115 public Symbol this[int index] { 116 get { throw new NotImplementedException(); }117 set { throw new NotImplementedException(); }116 get { return symbols[index]; } 117 set { symbols[index] = value; } 118 118 } 119 119
Note: See TracChangeset
for help on using the changeset viewer.