Changeset 10483 for branches/LogResidualEvaluator/HeuristicLab.Problems.TravelingSalesman/3.3/Evaluators/TSPDistanceMatrixEvaluator.cs
- Timestamp:
- 02/20/14 14:56:39 (11 years ago)
- Location:
- branches/LogResidualEvaluator
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/LogResidualEvaluator
- Property svn:mergeinfo changed
-
branches/LogResidualEvaluator/HeuristicLab.Problems.TravelingSalesman/3.3/Evaluators/TSPDistanceMatrixEvaluator.cs
r9456 r10483 69 69 } 70 70 71 public override IOperation Apply() {71 public override IOperation InstrumentedApply() { 72 72 Permutation p = PermutationParameter.ActualValue; 73 73 DistanceMatrix dm = DistanceMatrixParameter.ActualValue; 74 74 75 75 QualityParameter.ActualValue = new DoubleValue(Apply(dm, p)); 76 return base. Apply();76 return base.InstrumentedApply(); 77 77 } 78 78 }
Note: See TracChangeset
for help on using the changeset viewer.