Free cookie consent management tool by TermsFeed Policy Generator

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

#922

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

Legend:

Unmodified
Added
Removed
  • branches/CloningRefactoring/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/Prins/Manipulators/PrinsExhaustiveLSManipulator.cs

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