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/Analyzer/BestSolution/TimeWindowed/BestTimeWindowedVRPSolutionAnalyzer.cs

    r4454 r4752  
    2929using HeuristicLab.Problems.VehicleRouting.Interfaces;
    3030using HeuristicLab.Problems.VehicleRouting.Variants;
     31using HeuristicLab.Common;
    3132
    3233namespace HeuristicLab.Problems.VehicleRouting {
     
    7778    }
    7879
     80    public override IDeepCloneable Clone(Cloner cloner) {
     81      return new BestTimeWindowedVRPSolutionAnalyzer(this, cloner);
     82    }
     83
     84    private BestTimeWindowedVRPSolutionAnalyzer(BestTimeWindowedVRPSolutionAnalyzer original, Cloner cloner)
     85      : base(original, cloner) {
     86    }
     87
    7988    public override IOperation Apply() {
    8089      ItemArray<IVRPEncoding> solutions = VRPToursParameter.ActualValue;
Note: See TracChangeset for help on using the changeset viewer.