Changeset 15981
- Timestamp:
- 07/03/18 17:05:50 (6 years ago)
- Location:
- branches/2886_SymRegGrammarEnumeration/HeuristicLab.Algorithms.DataAnalysis.SymRegGrammarEnumeration/GrammarEnumeration
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2886_SymRegGrammarEnumeration/HeuristicLab.Algorithms.DataAnalysis.SymRegGrammarEnumeration/GrammarEnumeration/LruCache.cs
r15974 r15981 97 97 public bool IsReadOnly => false; 98 98 99 public TValue this[TKey key] { get => Get(key, null); set => Add(key, value); } 99 public TValue this[TKey key] { 100 get { return Get(key, null); } 101 set { Add(key, value); } 102 } 100 103 101 104 /// <summary>Gets the value associated with the specified key.</summary> -
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.