Changeset 5177 for branches/ParallelEngine/HeuristicLab.Problems.DataAnalysis.Regression/3.3/Symbolic/Evaluators/MultiObjectiveSymbolicRegressionEvaluator.cs
- Timestamp:
- 12/26/10 03:51:30 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ParallelEngine/HeuristicLab.Problems.DataAnalysis.Regression/3.3/Symbolic/Evaluators/MultiObjectiveSymbolicRegressionEvaluator.cs
r4722 r5177 118 118 } 119 119 120 public override IOperation Apply( ) {120 public override IOperation Apply(IExecutionContext context) { 121 121 int seed = Random.Next(); 122 122 IEnumerable<int> rows = SingleObjectiveSymbolicRegressionEvaluator.GenerateRowsToEvaluate(seed, RelativeNumberOfEvaluatedSamples.Value, SamplesStart.Value, SamplesEnd.Value) … … 125 125 RegressionProblemData.TargetVariable, rows); 126 126 QualitiesParameter.ActualValue = new DoubleArray(qualities); 127 return base.Apply( );127 return base.Apply(context); 128 128 } 129 129
Note: See TracChangeset
for help on using the changeset viewer.