Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/09/10 09:55:31 (13 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/General/Creators/MultiVRPSolutionCreator.cs

    r4365 r4752  
    3333using HeuristicLab.Problems.VehicleRouting.Variants;
    3434using System.Collections.Generic;
     35using HeuristicLab.Common;
    3536
    3637namespace HeuristicLab.Problems.VehicleRouting.Encodings.General {
     
    6061
    6162      Parameters.Add(new LookupParameter<IVRPProblemInstance>("ProblemInstance", "The VRP problem instance"));
     63    }
     64
     65    public override IDeepCloneable Clone(Cloner cloner) {
     66      return new MultiVRPSolutionCreator(this, cloner);
     67    }
     68
     69    protected MultiVRPSolutionCreator(MultiVRPSolutionCreator original, Cloner cloner)
     70      : base(original, cloner) {
    6271    }
    6372
Note: See TracChangeset for help on using the changeset viewer.