- Timestamp:
- 07/28/11 14:16:21 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/BestSolution/BestVRPSolutionAnalyzer.cs
r5867 r6607 153 153 else 154 154 results.Add(new Result("Best valid VRP Solution", validSolution)); 155 156 results.Add(new Result("Best valid VRP Solution Distance", new DoubleValue(distances[i].Value))); 157 results.Add(new Result("Best valid VRP Solution VehicleUtilization", new DoubleValue(vehiclesUtilizations[i].Value))); 155 158 } 156 159 } else { … … 160 163 validSolution.Solution = best.Clone() as IVRPEncoding; 161 164 validSolution.Quality.Value = qualities[i].Value; 165 (results["Best valid VRP Solution Distance"].Value as DoubleValue).Value = distances[i].Value; 166 (results["Best valid VRP Solution VehicleUtilization"].Value as DoubleValue).Value = vehiclesUtilizations[i].Value; 162 167 } 163 168 }
Note: See TracChangeset
for help on using the changeset viewer.