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.Algorithms.VariableNeighborhoodSearch/3.3/VariableNeighborhoodSearch.cs

    r6476 r7172  
    315315          foreach (IScopeTreeLookupParameter param in analyzer.Parameters.OfType<IScopeTreeLookupParameter>())
    316316            param.Depth = 1;
    317           Analyzer.Operators.Add(analyzer);
     317          Analyzer.Operators.Add(analyzer, analyzer.EnabledByDefault);
    318318        }
    319319      }
    320       Analyzer.Operators.Add(qualityAnalyzer);
     320      Analyzer.Operators.Add(qualityAnalyzer, qualityAnalyzer.EnabledByDefault);
    321321    }
    322322    private VariableNeighborhoodSearchMainLoop FindMainLoop(IOperator start) {
Note: See TracChangeset for help on using the changeset viewer.