Changeset 4752 for branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Manipulators/PotvinTwoLevelExchangeManipulator.cs
- Timestamp:
- 11/09/10 09:55:31 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Manipulators/PotvinTwoLevelExchangeManipulator.cs
r4376 r4752 26 26 using HeuristicLab.Data; 27 27 using System.Collections.Generic; 28 using HeuristicLab.Common; 28 29 29 30 namespace HeuristicLab.Problems.VehicleRouting.Encodings.Potvin { … … 35 36 36 37 public PotvinTwoLevelExchangeManipulator() : base() { } 38 39 public override IDeepCloneable Clone(Cloner cloner) { 40 return new PotvinTwoLevelExchangeManipulator(this, cloner); 41 } 42 43 private PotvinTwoLevelExchangeManipulator(PotvinTwoLevelExchangeManipulator original, Cloner cloner) 44 : base(original, cloner) { 45 } 37 46 38 47 protected override void Manipulate(IRandom random, PotvinEncoding individual) {
Note: See TracChangeset
for help on using the changeset viewer.