Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/12/11 03:39:04 (12 years ago)
Author:
swagner
Message:

Disabled run-time intensive analyzers by default (#1584)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/Analyzers/BestVRPSolutionAnalyzer.cs

    r5445 r7172  
    3636  [StorableClass]
    3737  public sealed class BestVRPSolutionAnalyzer : SingleSuccessorOperator, IAnalyzer {
     38    public bool EnabledByDefault {
     39      get { return true; }
     40    }
     41
    3842    public ScopeTreeLookupParameter<IVRPEncoding> VRPToursParameter {
    3943      get { return (ScopeTreeLookupParameter<IVRPEncoding>)Parameters["VRPTours"]; }
     
    9599    public BestVRPSolutionAnalyzer()
    96100      : base() {
    97         Parameters.Add(new ScopeTreeLookupParameter<IVRPEncoding>("VRPTours", "The VRP tours which should be evaluated."));
     101      Parameters.Add(new ScopeTreeLookupParameter<IVRPEncoding>("VRPTours", "The VRP tours which should be evaluated."));
    98102      Parameters.Add(new LookupParameter<DoubleMatrix>("Coordinates", "The x- and y-Coordinates of the cities."));
    99103      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.