Changeset 5177 for branches/ParallelEngine/HeuristicLab.Problems.TravelingSalesman/3.3/Analyzers/BestTSPSolutionAnalyzer.cs
- Timestamp:
- 12/26/10 03:51:30 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ParallelEngine/HeuristicLab.Problems.TravelingSalesman/3.3/Analyzers/BestTSPSolutionAnalyzer.cs
r4722 r5177 80 80 } 81 81 82 public override IOperation Apply( ) {82 public override IOperation Apply(IExecutionContext context) { 83 83 DoubleMatrix coordinates = CoordinatesParameter.ActualValue; 84 84 ItemArray<Permutation> permutations = PermutationParameter.ActualValue; … … 114 114 } 115 115 116 return base.Apply( );116 return base.Apply(context); 117 117 } 118 118 }
Note: See TracChangeset
for help on using the changeset viewer.