- Timestamp:
- 12/12/11 03:39:04 (13 years ago)
- Location:
- trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/Analyzers
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/Analyzers/BestAverageWorstVRPToursAnalyzer.cs
r5445 r7172 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; } -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/Analyzers/BestVRPSolutionAnalyzer.cs
r5445 r7172 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."));
Note: See TracChangeset
for help on using the changeset viewer.