- Timestamp:
- 03/31/21 11:30:06 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3107_LearningALPS/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Creators/SymbolFrequencyReinitializationStrategyController.cs
r17857 r17925 15 15 16 16 private const string SymbolicExpressionTreeParameterName = "SymbolicExpressionTree"; 17 private const string SymbolicExpressionTreeGrammarParameterName = " SymbolicExpressionTreeGrammar";17 private const string SymbolicExpressionTreeGrammarParameterName = "ClonedSymbolicExpressionTreeGrammar"; 18 18 19 19 #region Parameter Properties … … 53 53 var symbolFrequencies = SymbolicExpressionSymbolFrequencyAnalyzer.CalculateSymbolFrequencies(trees).ToDictionary(x => x.Key, x => x.Value); 54 54 55 foreach (var s in grammar.AllowedSymbols) {55 foreach (var s in grammar.AllowedSymbols) { 56 56 if (s is ProgramRootSymbol || s is StartSymbol) { 57 57 continue;
Note: See TracChangeset
for help on using the changeset viewer.