Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/12/11 09:31:22 (12 years ago)
Author:
ascheibe
Message:

#1215 enabled analyzers for MetaOpt per default

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.MetaOptimization/HeuristicLab.Problems.MetaOptimization/3.3/Analyzers/BestParameterConfigurationAnalyzer.cs

    r6197 r7173  
    1515  [StorableClass]
    1616  public sealed class BestParameterConfigurationAnalyzer : SingleSuccessorOperator, IAnalyzer {
     17
     18    public bool EnabledByDefault {
     19      get { return true; }
     20    }
    1721
    1822    public ScopeTreeLookupParameter<ParameterConfigurationTree> ParameterConfigurationParameter {
     
    8286      best.CollectParameterValues(bestRun.Parameters);
    8387
    84       if (bestKnownQuality == null || 
     88      if (bestKnownQuality == null ||
    8589        (!maximization && (qualities[idxBest].Value < bestKnownQuality.Value) ||
    8690        (maximization && (qualities[idxBest].Value > bestKnownQuality.Value)))) {
Note: See TracChangeset for help on using the changeset viewer.