Changeset 8053 for trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/BestAverageWorstTours/Capacitated
- Timestamp:
- 06/19/12 13:17:29 (13 years ago)
- Location:
- trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/BestAverageWorstTours/Capacitated
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/BestAverageWorstTours/Capacitated/BestAverageWorstCapacitatedVRPToursAnalyzer.cs
r7175 r8053 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 0Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 21 21 22 22 using System; 23 using HeuristicLab.Analysis; 23 24 using HeuristicLab.Common; 24 25 using HeuristicLab.Core; … … 29 30 using HeuristicLab.Parameters; 30 31 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 31 using HeuristicLab. Analysis;32 using HeuristicLab.Problems.VehicleRouting.Interfaces; 32 33 using HeuristicLab.Problems.VehicleRouting.Variants; 33 using HeuristicLab.Problems.VehicleRouting.Interfaces;34 34 35 35 namespace HeuristicLab.Problems.VehicleRouting { … … 82 82 public BestAverageWorstCapaciatatedVRPToursAnalyzer() 83 83 : base() { 84 #region Create parameters 84 #region Create parameters 85 85 Parameters.Add(new LookupParameter<IVRPProblemInstance>("ProblemInstance", "The problem instance.")); 86 86 … … 91 91 Parameters.Add(new ValueLookupParameter<DoubleValue>("CurrentWorstOverload", "The current worst overload value of all solutions.")); 92 92 Parameters.Add(new ValueLookupParameter<DataTable>("Overloads", "The data table to store the current best, current average, current worst, best and best known overload value.")); 93 93 94 94 Parameters.Add(new ValueLookupParameter<VariableCollection>("Results", "The results collection where the analysis values should be stored.")); 95 95 #endregion … … 145 145 private BestAverageWorstCapaciatatedVRPToursAnalyzer(BestAverageWorstCapaciatatedVRPToursAnalyzer original, Cloner cloner) 146 146 : base(original, cloner) { 147 147 this.Initialize(); 148 148 } 149 149 … … 151 151 BestAverageWorstCalculator.OverloadParameter.Depth = OverloadParameter.Depth; 152 152 BestMemorizer.OverloadParameter.Depth = OverloadParameter.Depth; 153 } 153 } 154 154 } 155 155 } -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/BestAverageWorstTours/Capacitated/BestAverageWorstCapacitatedVRPToursCalculator.cs
r4752 r8053 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 0Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 20 20 #endregion 21 21 22 using HeuristicLab.Common; 22 23 using HeuristicLab.Core; 23 24 using HeuristicLab.Data; … … 25 26 using HeuristicLab.Parameters; 26 27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 27 using HeuristicLab.Common;28 28 29 29 namespace HeuristicLab.Problems.VehicleRouting { … … 84 84 } 85 85 } 86 86 87 87 public override IOperation Apply() { 88 88 UpdateOverloads(); 89 89 90 90 return base.Apply(); 91 91 } -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/BestAverageWorstTours/Capacitated/BestCapacitatedVRPToursMemorizer.cs
r4752 r8053 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 0Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 21 21 22 22 using System.Linq; 23 using HeuristicLab.Common; 23 24 using HeuristicLab.Core; 24 25 using HeuristicLab.Data; … … 26 27 using HeuristicLab.Parameters; 27 28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 28 using HeuristicLab.Common;29 29 30 30 namespace HeuristicLab.Problems.VehicleRouting { … … 43 43 : base() { 44 44 Parameters.Add(new ScopeTreeLookupParameter<DoubleValue>("Overload", "The overloads of the VRP solutions which should be analyzed.")); 45 45 46 46 Parameters.Add(new ValueLookupParameter<DoubleValue>("BestOverload", "The best overload found so far.")); 47 47 } … … 62 62 if (BestOverloadParameter.ActualValue == null) 63 63 BestOverloadParameter.ActualValue = new DoubleValue(OverloadParameter.ActualValue[i].Value); 64 else if (OverloadParameter.ActualValue[i].Value <= BestOverloadParameter.ActualValue.Value)64 else if (OverloadParameter.ActualValue[i].Value <= BestOverloadParameter.ActualValue.Value) 65 65 BestOverloadParameter.ActualValue.Value = OverloadParameter.ActualValue[i].Value; 66 66
Note: See TracChangeset
for help on using the changeset viewer.