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/CVRPTW/CVRPTWEvaluator.cs

    r4520 r4752  
    3333using HeuristicLab.Problems.VehicleRouting.Variants;
    3434using HeuristicLab.Problems.VehicleRouting.Encodings;
     35using HeuristicLab.Common;
    3536
    3637namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances {
     
    144145      Parameters.Add(new LookupParameter<DoubleValue>("TravelTime", "The travel time."));
    145146    }
     147
     148    public override IDeepCloneable Clone(Cloner cloner) {
     149      return new CVRPTWEvaluator(this, cloner);
     150    }
     151
     152    protected CVRPTWEvaluator(CVRPTWEvaluator original, Cloner cloner)
     153      : base(original, cloner) {
     154    }
    146155  }
    147156}
Note: See TracChangeset for help on using the changeset viewer.