Changeset 17918 for branches/3105_PythonFormatter/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression/3.4/SingleObjective/SymbolicRegressionSingleObjectiveProblem.cs
- Timestamp:
- 03/29/21 09:54:58 (4 years ago)
- Location:
- branches/3105_PythonFormatter
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3105_PythonFormatter
- Property svn:mergeinfo changed
/trunk (added) merged: 17845,17856,17858-17859,17861,17867,17871-17873,17888-17889,17902-17903,17906-17914
- Property svn:mergeinfo changed
-
branches/3105_PythonFormatter/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression
- Property svn:mergeinfo changed
-
branches/3105_PythonFormatter/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression/3.4
- Property svn:mergeinfo changed
-
branches/3105_PythonFormatter/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression/3.4/SingleObjective/SymbolicRegressionSingleObjectiveProblem.cs
r17180 r17918 91 91 changed = true; 92 92 } 93 94 if (!Operators.OfType<ShapeConstraintsAnalyzer>().Any()) { 95 Operators.Add(new ShapeConstraintsAnalyzer()); 96 changed = true; 97 } 93 98 if (changed) { 94 99 ParameterizeOperators(); … … 113 118 Operators.Add(new SymbolicRegressionSolutionsAnalyzer()); 114 119 Operators.Add(new SymbolicExpressionTreePhenotypicSimilarityCalculator()); 120 Operators.Add(new ShapeConstraintsAnalyzer()); 115 121 Operators.Add(new SymbolicRegressionPhenotypicDiversityAnalyzer(Operators.OfType<SymbolicExpressionTreePhenotypicSimilarityCalculator>()) { DiversityResultName = "Phenotypic Diversity" }); 116 122 ParameterizeOperators();
Note: See TracChangeset
for help on using the changeset viewer.