- Timestamp:
- 05/30/11 16:59:50 (14 years ago)
- Location:
- branches/GP.Grammar.Editor/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GP.Grammar.Editor/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Creators/ProbabilisticTreeCreator.cs
r6284 r6337 182 182 where s.InitialFrequency > 0.0 183 183 where s.Fixed || parent.Grammar.GetMinimumExpressionDepth(s) < maxDepth - extensionDepth + 1 184 where s.Fixed || parent.Grammar.GetMaximumExpressionLength(s) > targetLength - totalListMinLength - currentLength184 //where s.Fixed || parent.Grammar.GetMaximumExpressionLength(s) > targetLength - totalListMinLength - currentLength 185 185 select s) 186 186 .ToList(); -
branches/GP.Grammar.Editor/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/SymbolicExpressionGrammarBase.cs
r6299 r6337 154 154 } 155 155 156 foreach (GroupSymbol group in symbols.Values.OfType<GroupSymbol>()) 157 group.symbols.Remove(symbol); 158 156 159 ClearCaches(); 157 160 OnChanged(); -
branches/GP.Grammar.Editor/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Symbols/GroupSymbol.cs
r6299 r6337 27 27 namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding { 28 28 public sealed class GroupSymbol : Symbol, IReadOnlySymbol { 29 privateList<ISymbol> symbols;29 internal List<ISymbol> symbols; 30 30 31 31 [Storable]
Note: See TracChangeset
for help on using the changeset viewer.