Changeset 5177 for branches/ParallelEngine/HeuristicLab.Analysis/3.3/MultiObjective/RankBasedParetoFrontAnalyzer.cs
- Timestamp:
- 12/26/10 03:51:30 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ParallelEngine/HeuristicLab.Analysis/3.3/MultiObjective/RankBasedParetoFrontAnalyzer.cs
r5143 r5177 44 44 } 45 45 46 protected override void Analyze(I temArray<DoubleArray> qualities, ResultCollection results) {46 protected override void Analyze(IExecutionContext context, ItemArray<DoubleArray> qualities, ResultCollection results) { 47 47 ItemArray<IntValue> ranks = RankParameter.ActualValue; 48 48 … … 61 61 front[counter, k] = qualities[i][k]; 62 62 if (populationLevel) { 63 paretoArchive[counter] = (IScope) ExecutionContext.Scope.SubScopes[i].Clone();63 paretoArchive[counter] = (IScope)context.Scope.SubScopes[i].Clone(); 64 64 } 65 65 counter++;
Note: See TracChangeset
for help on using the changeset viewer.