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/ProblemInstances/SingleDepotVRP/SingleDepotVRPEvaluator.cs

    r4378 r4752  
    3333using HeuristicLab.Problems.VehicleRouting.Variants;
    3434using HeuristicLab.Problems.VehicleRouting.Encodings;
     35using HeuristicLab.Common;
    3536
    3637
     
    7374    public SingleDepotVRPEvaluator() {
    7475    }
     76
     77    public override IDeepCloneable Clone(Cloner cloner) {
     78      return new SingleDepotVRPEvaluator(this, cloner);
     79    }
     80
     81    protected SingleDepotVRPEvaluator(SingleDepotVRPEvaluator original, Cloner cloner)
     82      : base(original, cloner) {
     83    }
    7584  }
    7685}
Note: See TracChangeset for help on using the changeset viewer.