- Timestamp:
- 11/29/12 13:29:45 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression/3.4/SingleObjective/ConstantOptimizationAnalyzer.cs
r8893 r8976 67 67 get { 68 68 IResult result; 69 ResultCollection.TryGetValue( "Constant Optimization Improvement", out result);69 ResultCollection.TryGetValue(DataTableNameConstantOptimizationImprovement, out result); 70 70 if (result == null) return null; 71 71 return (DataTable)result.Value; … … 112 112 113 113 public override IOperation Apply() { 114 //code executed forfirst call of analyzer114 //code executed in the first call of analyzer 115 115 if (qualitiesBeforeCoOp == null) { 116 117 116 double[] trainingQuality; 118 117 // sort is ascending and we take the first n% => order so that best solutions are smallest
Note: See TracChangeset
for help on using the changeset viewer.