Changeset 7173 for branches/HeuristicLab.MetaOptimization/HeuristicLab.Problems.MetaOptimization/3.3/Analyzers/BestParameterConfigurationAnalyzer.cs
- Timestamp:
- 12/12/11 09:31:22 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.MetaOptimization/HeuristicLab.Problems.MetaOptimization/3.3/Analyzers/BestParameterConfigurationAnalyzer.cs
r6197 r7173 15 15 [StorableClass] 16 16 public sealed class BestParameterConfigurationAnalyzer : SingleSuccessorOperator, IAnalyzer { 17 18 public bool EnabledByDefault { 19 get { return true; } 20 } 17 21 18 22 public ScopeTreeLookupParameter<ParameterConfigurationTree> ParameterConfigurationParameter { … … 82 86 best.CollectParameterValues(bestRun.Parameters); 83 87 84 if (bestKnownQuality == null || 88 if (bestKnownQuality == null || 85 89 (!maximization && (qualities[idxBest].Value < bestKnownQuality.Value) || 86 90 (maximization && (qualities[idxBest].Value > bestKnownQuality.Value)))) {
Note: See TracChangeset
for help on using the changeset viewer.