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)

Location:
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/BestSolution
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/BestSolution/BestVRPSolutionAnalyzer.cs

    r4374 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 BestVRPSolutionAnalyzer(this, cloner);
     82    }
     83
     84    private BestVRPSolutionAnalyzer(BestVRPSolutionAnalyzer original, Cloner cloner)
     85      : base(original, cloner) {
     86    }
     87
    7988    public override IOperation Apply() {
    8089      IVRPProblemInstance problemInstance = ProblemInstanceParameter.ActualValue;
  • 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;
  • 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.