Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/09/10 09:55:31 (14 years ago)
Author:
svonolfe
Message:

Merged relevant changes from the trunk into the branch (cloning,...) (#1177)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Manipulators/PotvinOneLevelExchangeManipulator.cs

    r4376 r4752  
    2626using HeuristicLab.Data;
    2727using System.Collections.Generic;
     28using HeuristicLab.Common;
    2829
    2930namespace HeuristicLab.Problems.VehicleRouting.Encodings.Potvin {
     
    3536
    3637    public PotvinOneLevelExchangeMainpulator() : base() { }
     38
     39    public override IDeepCloneable Clone(Cloner cloner) {
     40      return new PotvinOneLevelExchangeMainpulator(this, cloner);
     41    }
     42
     43    private PotvinOneLevelExchangeMainpulator(PotvinOneLevelExchangeMainpulator original, Cloner cloner)
     44      : base(original, cloner) {
     45    }
    3746   
    3847    protected override void Manipulate(IRandom random, PotvinEncoding individual) {
Note: See TracChangeset for help on using the changeset viewer.