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/CVRP/CVRPEvaluator.cs

    r4520 r4752  
    3333using HeuristicLab.Problems.VehicleRouting.Variants;
    3434using HeuristicLab.Problems.VehicleRouting.Encodings;
     35using HeuristicLab.Common;
    3536
    3637namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances {
     
    105106      Parameters.Add(new LookupParameter<DoubleValue>("Overload", "The overload."));
    106107    }
     108
     109    public override IDeepCloneable Clone(Cloner cloner) {
     110      return new CVRPEvaluator(this, cloner);
     111    }
     112
     113    protected CVRPEvaluator(CVRPEvaluator original, Cloner cloner)
     114      : base(original, cloner) {
     115    }
    107116  }
    108117}
Note: See TracChangeset for help on using the changeset viewer.