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/Encodings/General/Moves/MultiVRPMoveOperator/MultiVRPMoveMaker.cs

    r4370 r4752  
    2828using System.Collections.Generic;
    2929using HeuristicLab.Problems.VehicleRouting.Variants;
     30using HeuristicLab.Common;
    3031
    3132namespace HeuristicLab.Problems.VehicleRouting.Encodings.General{
     
    4546    }
    4647
     48    public override IDeepCloneable Clone(Cloner cloner) {
     49      return new MultiVRPMoveMaker(this, cloner);
     50    }
     51
     52    protected MultiVRPMoveMaker(MultiVRPMoveMaker original, Cloner cloner)
     53      : base(original, cloner) {
     54    }
     55
    4756    protected override void PerformMove() {
    4857      IVRPMove move = VRPMoveParameter.ActualValue as IVRPMove;
Note: See TracChangeset for help on using the changeset viewer.