Changeset 5177 for branches/ParallelEngine/HeuristicLab.Problems.VehicleRouting/3.3/Evaluators/VRPEvaluator.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/Evaluators/VRPEvaluator.cs
r4847 r5177 214 214 } 215 215 216 public sealed override IOperation Apply( ) {216 public sealed override IOperation Apply(IExecutionContext context) { 217 217 IVRPEncoding solution = VRPToursParameter.ActualValue; 218 218 … … 229 229 TardinessParameter.ActualValue = new DoubleValue(sumEval.Tardiness); 230 230 231 return base.Apply( );231 return base.Apply(context); 232 232 } 233 233 }
Note: See TracChangeset
for help on using the changeset viewer.