- Timestamp:
- 07/22/10 00:11:15 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Algorithms.NSGA2/3.3/CrowdedComparisonSorter.cs
r4040 r4067 58 58 int[] indices = Enumerable.Range(0, size).ToArray(); 59 59 60 Array.Sort(indices, new CustomComparer(ranks, distances));61 60 IScope[] scopes = ExecutionContext.Scope.SubScopes.ToArray(); 62 Array.Sort(indices, scopes );61 Array.Sort(indices, scopes, new CustomComparer(ranks, distances)); 63 62 ExecutionContext.Scope.SubScopes.Clear(); 64 63 ExecutionContext.Scope.SubScopes.AddRange(scopes);
Note: See TracChangeset
for help on using the changeset viewer.