Changeset 7172 for trunk/sources/HeuristicLab.Analysis/3.3/QualityAnalysis
- Timestamp:
- 12/12/11 03:39:04 (13 years ago)
- Location:
- trunk/sources/HeuristicLab.Analysis/3.3/QualityAnalysis
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Analysis/3.3/QualityAnalysis/BestAverageWorstQualityAnalyzer.cs
r6051 r7172 74 74 75 75 #region Properties 76 public bool EnabledByDefault { 77 get { return true; } 78 } 76 79 private BestQualityMemorizer BestQualityMemorizer { 77 80 get { return (BestQualityMemorizer)OperatorGraph.InitialOperator; } -
trunk/sources/HeuristicLab.Analysis/3.3/QualityAnalysis/QualityAnalyzer.cs
r5445 r7172 65 65 66 66 #region Properties 67 public bool EnabledByDefault { 68 get { return true; } 69 } 67 70 private BestQualityMemorizer BestQualityMemorizer { 68 71 get { return (BestQualityMemorizer)OperatorGraph.InitialOperator; } -
trunk/sources/HeuristicLab.Analysis/3.3/QualityAnalysis/QualityDistributionAnalyzer.cs
r6628 r7172 54 54 } 55 55 #endregion 56 57 public virtual bool EnabledByDefault { 58 get { return true; } 59 } 56 60 57 61 public string HistogramName { -
trunk/sources/HeuristicLab.Analysis/3.3/QualityAnalysis/ScaledQualityDifferenceAnalyzer.cs
r6628 r7172 34 34 [StorableClass] 35 35 public class ScaledQualityDifferenceAnalyzer : SingleSuccessorOperator, IAnalyzer { 36 public virtual bool EnabledByDefault { 37 get { return true; } 38 } 39 36 40 public ILookupParameter<DoubleValue> QualityParameter { 37 41 get { return (ILookupParameter<DoubleValue>)Parameters["Quality"]; }
Note: See TracChangeset
for help on using the changeset viewer.