- Timestamp:
- 01/02/12 11:40:31 (13 years ago)
- Location:
- branches/RegressionBenchmarks
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/RegressionBenchmarks
-
branches/RegressionBenchmarks/HeuristicLab.Problems.VehicleRouting
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Problems.VehicleRouting (added) merged: 7172,7201
- Property svn:mergeinfo changed
-
branches/RegressionBenchmarks/HeuristicLab.Problems.VehicleRouting/3.3/Analyzers/BestAverageWorstVRPToursAnalyzer.cs
r5445 r7255 140 140 141 141 #region Properties 142 public bool EnabledByDefault { 143 get { return true; } 144 } 142 145 private BestVRPToursMemorizer BestMemorizer { 143 146 get { return (BestVRPToursMemorizer)OperatorGraph.InitialOperator; } -
branches/RegressionBenchmarks/HeuristicLab.Problems.VehicleRouting/3.3/Analyzers/BestVRPSolutionAnalyzer.cs
r5445 r7255 36 36 [StorableClass] 37 37 public sealed class BestVRPSolutionAnalyzer : SingleSuccessorOperator, IAnalyzer { 38 public bool EnabledByDefault { 39 get { return true; } 40 } 41 38 42 public ScopeTreeLookupParameter<IVRPEncoding> VRPToursParameter { 39 43 get { return (ScopeTreeLookupParameter<IVRPEncoding>)Parameters["VRPTours"]; } … … 95 99 public BestVRPSolutionAnalyzer() 96 100 : base() { 97 101 Parameters.Add(new ScopeTreeLookupParameter<IVRPEncoding>("VRPTours", "The VRP tours which should be evaluated.")); 98 102 Parameters.Add(new LookupParameter<DoubleMatrix>("Coordinates", "The x- and y-Coordinates of the cities.")); 99 103 Parameters.Add(new LookupParameter<DoubleMatrix>("DistanceMatrix", "The matrix which contains the distances between the cities.")); -
branches/RegressionBenchmarks/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/General/TourEncoding.cs
r5445 r7255 32 32 [StorableClass] 33 33 public abstract class TourEncoding : Item, IVRPEncoding { 34 public override ImageItemImage {34 public static new Image StaticItemImage { 35 35 get { return HeuristicLab.Common.Resources.VSImageLibrary.Class; } 36 36 } -
branches/RegressionBenchmarks/HeuristicLab.Problems.VehicleRouting/3.3/VRPSolution.cs
r5445 r7255 34 34 [StorableClass] 35 35 public sealed class VRPSolution : Item { 36 public override ImageItemImage {36 public static new Image StaticItemImage { 37 37 get { return HeuristicLab.Common.Resources.VSImageLibrary.Image; } 38 38 }
Note: See TracChangeset
for help on using the changeset viewer.