Changeset 5177 for branches/ParallelEngine/HeuristicLab.Problems.TravelingSalesman/3.3/Evaluators/TSPCoordinatesPathEvaluator.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/Evaluators/TSPCoordinatesPathEvaluator.cs
r4825 r5177 71 71 } 72 72 73 public sealed override IOperation Apply( ) {73 public sealed override IOperation Apply(IExecutionContext context) { 74 74 if (UseDistanceMatrixParameter.ActualValue.Value) { 75 75 Permutation p = PermutationParameter.ActualValue; … … 102 102 QualityParameter.ActualValue = new DoubleValue(length); 103 103 } 104 return base.Apply( );104 return base.Apply(context); 105 105 } 106 106
Note: See TracChangeset
for help on using the changeset viewer.