Changeset 11495
- Timestamp:
- 10/24/14 16:46:06 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Grammars/SymbolicExpressionGrammarBase.cs
r11494 r11495 64 64 65 65 private bool suppressEvents; 66 protected internalDictionary<string, ISymbol> symbols;67 protected internalDictionary<string, Tuple<int, int>> symbolSubtreeCount;68 protected internalDictionary<string, List<string>> allowedChildSymbols;69 protected internalDictionary<Tuple<string, int>, List<string>> allowedChildSymbolsPerIndex;66 protected Dictionary<string, ISymbol> symbols; 67 protected Dictionary<string, Tuple<int, int>> symbolSubtreeCount; 68 protected Dictionary<string, List<string>> allowedChildSymbols; 69 protected Dictionary<Tuple<string, int>, List<string>> allowedChildSymbolsPerIndex; 70 70 71 71 public override bool CanChangeName {
Note: See TracChangeset
for help on using the changeset viewer.