Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/24/20 00:58:42 (4 years ago)
Author:
abeham
Message:

#2521: working on VRP (WIP)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2521_ProblemRefactoring/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Moves/PickupDelivery/PDShift/PotvinPDShiftMove.cs

    r17226 r17698  
    3333  public class PotvinPDShiftMove : Item, IVRPMove {
    3434    [Storable]
    35     public IVRPEncoding Individual { get; protected set; }
     35    public IVRPEncodedSolution Individual { get; protected set; }
    3636
    3737    [Storable]
     
    5252    }
    5353
    54     public PotvinPDShiftMove(int city, int oldTour, int tour, PotvinEncoding individual) {
     54    public PotvinPDShiftMove(int city, int oldTour, int tour, PotvinEncodedSolution individual) {
    5555      City = city;
    5656      OldTour = oldTour;
    5757      Tour = tour;
    5858
    59       this.Individual = individual.Clone() as PotvinEncoding;
     59      this.Individual = individual.Clone() as PotvinEncodedSolution;
    6060    }
    6161
     
    7070      this.Tour = original.Tour;
    7171
    72       this.Individual = cloner.Clone(Individual) as PotvinEncoding;
     72      this.Individual = cloner.Clone(Individual) as PotvinEncodedSolution;
    7373    }
    7474
Note: See TracChangeset for help on using the changeset viewer.