Changeset 12030 for branches/SymbolicExpressionTreeDiversityAnalyzers/HeuristicLab.Problems.DataAnalysis.Symbolic.Classification
- Timestamp:
- 02/17/15 21:18:40 (10 years ago)
- Location:
- branches/SymbolicExpressionTreeDiversityAnalyzers/HeuristicLab.Problems.DataAnalysis.Symbolic.Classification/3.4/SingleObjective
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SymbolicExpressionTreeDiversityAnalyzers/HeuristicLab.Problems.DataAnalysis.Symbolic.Classification/3.4/SingleObjective/SymbolicClassificationPhenotypicDiversityAnalyzer.cs
r12029 r12030 31 31 32 32 namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Analyzers { 33 [Item("Symbolic DataAnalysisPhenotypicDiversityAnalyzer", "An analyzer which calculates diversity based on the phenotypic distance between trees")]33 [Item("SymbolicClassificationPhenotypicDiversityAnalyzer", "An analyzer which calculates diversity based on the phenotypic distance between trees")] 34 34 [StorableClass] 35 35 public class SymbolicClassificationPhenotypicDiversityAnalyzer : SingleObjectivePopulationDiversityAnalyzer { … … 105 105 if (UseClassValues) { 106 106 var problemData = ProblemDataParameter.ActualValue; 107 var evaluatedValues = new ItemArray<DoubleArray>( );107 var evaluatedValues = new ItemArray<DoubleArray>(trees.Length); 108 108 for (int i = 0; i < trees.Length; ++i) { 109 109 var t = trees[i]; -
branches/SymbolicExpressionTreeDiversityAnalyzers/HeuristicLab.Problems.DataAnalysis.Symbolic.Classification/3.4/SingleObjective/SymbolicClassificationSingleObjectiveProblem.cs
r12012 r12030 24 24 using HeuristicLab.Parameters; 25 25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 26 using HeuristicLab.Problems.DataAnalysis.Symbolic.Analyzers; 26 27 27 28 namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Classification { … … 115 116 Operators.Add(new SymbolicClassificationSingleObjectiveTrainingParetoBestSolutionAnalyzer()); 116 117 Operators.Add(new SymbolicClassificationSingleObjectiveValidationParetoBestSolutionAnalyzer()); 118 Operators.Add(new SymbolicClassificationPhenotypicDiversityAnalyzer()); 117 119 ParameterizeOperators(); 118 120 }
Note: See TracChangeset
for help on using the changeset viewer.