Changeset 4693
- Timestamp:
- 10/29/10 20:40:34 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/CloningRefactoring/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/Zhu/ZhuEncoding.cs
r4687 r4693 140 140 this.useDistanceMatrix = original.useDistanceMatrix; 141 141 } 142 public ZhuEncoding(Permutation permutation, int cities, 143 DoubleArray dueTimeArray, DoubleArray serviceTimeArray, DoubleArray readyTimeArray, DoubleArray demandArray, DoubleValue capacity, 144 DoubleMatrix coordinates, BoolValue useDistanceMatrix) 145 : base(permutation) { 146 this.cities = cities; 147 this.dueTimeArray = dueTimeArray; 148 this.serviceTimeArray = serviceTimeArray; 149 this.readyTimeArray = readyTimeArray; 150 this.demandArray = demandArray; 151 this.capacity = capacity; 152 this.coordinates = coordinates; 153 this.useDistanceMatrix = useDistanceMatrix; 154 } 155 142 156 public override IDeepCloneable Clone(Cloner cloner) { 143 157 return new ZhuEncoding(this, cloner);
Note: See TracChangeset
for help on using the changeset viewer.