Changeset 5177 for branches/ParallelEngine/HeuristicLab.Problems.VehicleRouting/3.3/MoveEvaluators/VRPMoveEvaluator.cs
- Timestamp:
- 12/26/10 03:51:30 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ParallelEngine/HeuristicLab.Problems.VehicleRouting/3.3/MoveEvaluators/VRPMoveEvaluator.cs
r4722 r5177 99 99 protected abstract TourEvaluation GetMoveQuality(); 100 100 101 public override IOperation Apply( ) {101 public override IOperation Apply(IExecutionContext context) { 102 102 TourEvaluation tourEval = GetMoveQuality(); 103 103 … … 109 109 MoveTravelTimeParameter.ActualValue = new DoubleValue(tourEval.TravelTime); 110 110 111 return base.Apply( );111 return base.Apply(context); 112 112 } 113 113 }
Note: See TracChangeset
for help on using the changeset viewer.