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/Analyzer/BestSolution/Capacitated/BestCapacitatedVRPSolutionAnalyzer.cs

    r4454 r4752  
    2929using HeuristicLab.Problems.VehicleRouting.Interfaces;
    3030using HeuristicLab.Problems.VehicleRouting.Variants;
     31using HeuristicLab.Common;
    3132
    3233namespace HeuristicLab.Problems.VehicleRouting {
     
    7374    }
    7475
     76    public override IDeepCloneable Clone(Cloner cloner) {
     77      return new BestCapacitatedVRPSolutionAnalyzer(this, cloner);
     78    }
     79
     80    private BestCapacitatedVRPSolutionAnalyzer(BestCapacitatedVRPSolutionAnalyzer original, Cloner cloner)
     81      : base(original, cloner) {
     82    }
     83
    7584    public override IOperation Apply() {
    7685      ItemArray<IVRPEncoding> solutions = VRPToursParameter.ActualValue;
Note: See TracChangeset for help on using the changeset viewer.