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/Zhu/Crossovers/ZhuHeuristicCrossover2.cs

    r17226 r17698  
    4444    }
    4545
    46     protected override ZhuEncoding Crossover(IRandom random, ZhuEncoding parent1, ZhuEncoding parent2) {
     46    protected override ZhuEncodedSolution Crossover(IRandom random, ZhuEncodedSolution parent1, ZhuEncodedSolution parent2) {
    4747      List<int> p1 = new List<int>(parent1);
    4848      List<int> p2 = new List<int>(parent2);
    4949
    50       ZhuEncoding child = parent2.Clone() as ZhuEncoding;
     50      ZhuEncodedSolution child = parent2.Clone() as ZhuEncodedSolution;
    5151
    5252      if (parent1.Length != parent2.Length)
Note: See TracChangeset for help on using the changeset viewer.