- Timestamp:
- 09/09/10 16:24:09 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Alba/Crossovers/AlbaCrossover.cs
r4369 r4376 53 53 IVRPEncoding solution = ParentsParameter.ActualValue[i]; 54 54 55 /*if (!(solution is AlbaEncoding)) { 56 parents[i] = AlbaEncoding.ConvertFrom(solution, VehiclesParameter.ActualValue.Value, 57 DistanceMatrixParameter); 58 } else*/ { 55 if (!(solution is AlbaEncoding)) { 56 parents[i] = AlbaEncoding.ConvertFrom(solution, ProblemInstance); 57 } else { 59 58 parents[i] = solution; 60 59 }
Note: See TracChangeset
for help on using the changeset viewer.