Changeset 5177 for branches/ParallelEngine/HeuristicLab.Problems.VehicleRouting/3.3/Analyzers/BestVRPToursMemorizer.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/Analyzers/BestVRPToursMemorizer.cs
r4722 r5177 89 89 } 90 90 91 public override IOperation Apply( ) {91 public override IOperation Apply(IExecutionContext context) { 92 92 int i = OverloadParameter.ActualValue.Select((x, index) => new { index, x.Value }).OrderBy(x => x.Value).First().index; 93 93 if (BestOverloadParameter.ActualValue == null) … … 120 120 BestVehiclesUtilizedParameter.ActualValue.Value = VehiclesUtilizedParameter.ActualValue[i].Value; 121 121 122 return base.Apply( );122 return base.Apply(context); 123 123 } 124 124 }
Note: See TracChangeset
for help on using the changeset viewer.