Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/29/10 20:28:04 (13 years ago)
Author:
abeham
Message:

#922

  • Refactored GVR encoding in HeuristicLab.Problems.VehicleRouting
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/CloningRefactoring/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/GVR/Manipulators/GVRDisplacementManipulator.cs

    r4352 r4689  
    2626using HeuristicLab.Data;
    2727using System.Collections.Generic;
     28using HeuristicLab.Common;
    2829
    2930namespace HeuristicLab.Problems.VehicleRouting.Encodings.GVR {
     
    3334    [StorableConstructor]
    3435    private GVRDisplacementManipulator(bool deserializing) : base(deserializing) { }
    35 
     36    private GVRDisplacementManipulator(GVRDisplacementManipulator original, Cloner cloner) : base(original, cloner) { }
     37    public override IDeepCloneable Clone(Cloner cloner) {
     38      return new GVRDisplacementManipulator(this, cloner);
     39    }
    3640    public GVRDisplacementManipulator()
    3741      : base() {
Note: See TracChangeset for help on using the changeset viewer.