Changeset 5177 for branches/ParallelEngine/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/Zhu/Manipulators/ZhuManipulator.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/Zhu/Manipulators/ZhuManipulator.cs
r4722 r5177 45 45 } 46 46 47 protected abstract void Manipulate(I Random random, ZhuEncoding individual);47 protected abstract void Manipulate(IExecutionContext context, IRandom random, ZhuEncoding individual); 48 48 49 public override IOperation Apply( ) {49 public override IOperation Apply(IExecutionContext context) { 50 50 IVRPEncoding solution = VRPToursParameter.ActualValue; 51 51 if (!(solution is ZhuEncoding)) { … … 62 62 } 63 63 64 Manipulate( RandomParameter.ActualValue, VRPToursParameter.ActualValue as ZhuEncoding);64 Manipulate(context, RandomParameter.ActualValue, VRPToursParameter.ActualValue as ZhuEncoding); 65 65 66 return base.Apply( );66 return base.Apply(context); 67 67 } 68 68 }
Note: See TracChangeset
for help on using the changeset viewer.