Changeset 5177 for branches/ParallelEngine/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/Potvin/Manipulators/PotvinManipulator.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/Encodings/Potvin/Manipulators/PotvinManipulator.cs
r4722 r5177 80 80 } 81 81 82 public override IOperation Apply( ) {82 public override IOperation Apply(IExecutionContext context) { 83 83 IVRPEncoding solution = VRPToursParameter.ActualValue; 84 84 if (!(solution is PotvinEncoding)) { … … 88 88 Manipulate(RandomParameter.ActualValue, VRPToursParameter.ActualValue as PotvinEncoding); 89 89 90 return base.Apply( );90 return base.Apply(context); 91 91 } 92 92 }
Note: See TracChangeset
for help on using the changeset viewer.