- Timestamp:
- 03/29/11 15:40:01 (14 years ago)
- Location:
- branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/BestSolution/BestVRPSolutionAnalyzer.cs
r5202 r5867 149 149 validSolution = new VRPSolution(problemInstance, best.Clone() as IVRPEncoding, new DoubleValue(qualities[i].Value)); 150 150 BestValidSolutionParameter.ActualValue = validSolution; 151 results.Add(new Result("Best valid VRP Solution", validSolution)); 151 if (results.ContainsKey("Best valid VRP Solution")) 152 results["Best valid VRP Solution"].Value = validSolution; 153 else 154 results.Add(new Result("Best valid VRP Solution", validSolution)); 152 155 } 153 156 } else { -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/VRPSolution.cs
r5127 r5867 36 36 public sealed class VRPSolution : Item { 37 37 public override Image ItemImage { 38 get { return HeuristicLab.Common.Resources.VS 2008ImageLibrary.Image; }38 get { return HeuristicLab.Common.Resources.VSImageLibrary.Image; } 39 39 } 40 40
Note: See TracChangeset
for help on using the changeset viewer.