Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/19/10 16:51:30 (14 years ago)
Author:
svonolfe
Message:

Added prins encoding (#1039)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/VRP/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/GVR/Crossovers/GVRCrossover.cs

    r4230 r4268  
    104104      for (int i = 0; i < ParentsParameter.ActualValue.Length; i++) {
    105105        IVRPEncoding solution = ParentsParameter.ActualValue[i];
    106 
    107106        if (!(solution is GVREncoding)) {
    108           parents[i] = GVREncoding.ConvertFrom(solution, CapacityParameter.ActualValue, DemandParameter.ActualValue, 
    109             VehiclesParameter.ActualValue);
     107          parents[i] = GVREncoding.ConvertFrom(solution, CapacityParameter.ActualValue, DemandParameter.ActualValue,
     108            DistanceMatrixParameter);
    110109        } else {
    111110          parents[i] = solution;
Note: See TracChangeset for help on using the changeset viewer.