- Timestamp:
- 08/19/10 16:51:30 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/GVR/Crossovers/GVRCrossover.cs
r4230 r4268 104 104 for (int i = 0; i < ParentsParameter.ActualValue.Length; i++) { 105 105 IVRPEncoding solution = ParentsParameter.ActualValue[i]; 106 107 106 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); 110 109 } else { 111 110 parents[i] = solution;
Note: See TracChangeset
for help on using the changeset viewer.