Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/17/10 13:42:53 (13 years ago)
Author:
svonolfe
Message:

Implemented unified tabu search (WIP) (#1177)

File:
1 edited

Legend:

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

    r4752 r5127  
    106106    private VRPSolution(VRPSolution original, Cloner cloner)
    107107      : base(original, cloner) {
    108       this.problemInstance = (IVRPProblemInstance)cloner.Clone(original.problemInstance);
     108      this.problemInstance = original.problemInstance;
    109109      this.solution = (IVRPEncoding)cloner.Clone(original.solution);
    110110      this.quality = (DoubleValue)cloner.Clone(original.quality);
Note: See TracChangeset for help on using the changeset viewer.