- Timestamp:
- 03/05/14 14:48:13 (11 years ago)
- Location:
- branches/DataPreprocessing
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing
- Property svn:mergeinfo changed
-
branches/DataPreprocessing/HeuristicLab.Problems.VehicleRouting
- Property svn:mergeinfo changed
-
branches/DataPreprocessing/HeuristicLab.Problems.VehicleRouting/3.4/Improver/VRPImprovementOperator.cs
r9456 r10538 75 75 } 76 76 77 public override IOperation Apply() {77 public override IOperation InstrumentedApply() { 78 78 var solution = SolutionParameter.ActualValue as IVRPEncoding; 79 79 var potvinSolution = solution is PotvinEncoding ? solution as PotvinEncoding : PotvinEncoding.ConvertFrom(solution, ProblemInstance); … … 87 87 LocalEvaluatedSolutions.ActualValue = new IntValue(evaluatedSolutions); 88 88 89 return base. Apply();89 return base.InstrumentedApply(); 90 90 } 91 91
Note: See TracChangeset
for help on using the changeset viewer.