- Timestamp:
- 03/03/17 11:41:43 (8 years ago)
- Location:
- branches/PersistenceOverhaul/HeuristicLab.Analysis/3.3/QualityAnalysis
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceOverhaul/HeuristicLab.Analysis/3.3/QualityAnalysis/BestAverageWorstQualityAnalyzer.cs
r13368 r14711 35 35 /// </summary> 36 36 [Item("BestAverageWorstQualityAnalyzer", "An operator which analyzes the best, average and worst quality of solutions in the scope tree.")] 37 [Storable Class("A8115F53-3244-48F8-AF1C-52BEA7A17D13")]37 [StorableType("A8115F53-3244-48F8-AF1C-52BEA7A17D13")] 38 38 public sealed class BestAverageWorstQualityAnalyzer : AlgorithmOperator, IAnalyzer, ISingleObjectiveOperator { 39 39 #region Parameter properties -
branches/PersistenceOverhaul/HeuristicLab.Analysis/3.3/QualityAnalysis/BestAverageWorstQualityCalculator.cs
r13368 r14711 33 33 /// </summary> 34 34 [Item("BestAverageWorstQualityCalculator", "An operator which calculates the best, average and worst quality of solutions in the scope tree.")] 35 [Storable Class("D49EF6BB-840B-487F-8D6A-AAD1DA4061C8")]35 [StorableType("D49EF6BB-840B-487F-8D6A-AAD1DA4061C8")] 36 36 public sealed class BestAverageWorstQualityCalculator : SingleSuccessorOperator, ISingleObjectiveOperator { 37 37 public ValueLookupParameter<BoolValue> MaximizationParameter { -
branches/PersistenceOverhaul/HeuristicLab.Analysis/3.3/QualityAnalysis/BestQualityMemorizer.cs
r13368 r14711 33 33 /// </summary> 34 34 [Item("BestQualityMemorizer", "An operator that updates the best quality found so far with those qualities contained in the scope tree.")] 35 [Storable Class("380E0284-8FAC-4D7A-874F-AFE78CD4EF21")]35 [StorableType("380E0284-8FAC-4D7A-874F-AFE78CD4EF21")] 36 36 public class BestQualityMemorizer : SingleSuccessorOperator, ISingleObjectiveOperator { 37 37 public ValueLookupParameter<BoolValue> MaximizationParameter { -
branches/PersistenceOverhaul/HeuristicLab.Analysis/3.3/QualityAnalysis/QualityAnalyzer.cs
r13368 r14711 35 35 /// </summary> 36 36 [Item("QualityAnalyzer", "An operator which analyzes the quality of solutions in the scope tree.")] 37 [Storable Class("E4B4A263-6263-43C7-B2A8-DD569A7B4067")]37 [StorableType("E4B4A263-6263-43C7-B2A8-DD569A7B4067")] 38 38 public sealed class QualityAnalyzer : AlgorithmOperator, IAnalyzer, ISingleObjectiveOperator { 39 39 #region Parameter properties -
branches/PersistenceOverhaul/HeuristicLab.Analysis/3.3/QualityAnalysis/QualityDifferenceCalculator.cs
r13368 r14711 32 32 /// </summary> 33 33 [Item("QualityDifferenceCalculator", "An operator which calculates the absolute and relative difference of two quality values.")] 34 [Storable Class("EF329063-1677-41EF-8386-0E634A00BEEC")]34 [StorableType("EF329063-1677-41EF-8386-0E634A00BEEC")] 35 35 public class QualityDifferenceCalculator : SingleSuccessorOperator { 36 36 public IValueLookupParameter<DoubleValue> FirstQualityParameter { -
branches/PersistenceOverhaul/HeuristicLab.Analysis/3.3/QualityAnalysis/QualityDistributionAnalyzer.cs
r13368 r14711 31 31 namespace HeuristicLab.Analysis.QualityAnalysis { 32 32 [Item("QualityDistributionAnalyzer", "Analyzes the distribution of the quality values in that it adds a Histogram of them into the result collection.")] 33 [Storable Class("9A106F24-B6DE-4F65-BC1A-358783ADA5D2")]33 [StorableType("9A106F24-B6DE-4F65-BC1A-358783ADA5D2")] 34 34 public class QualityDistributionAnalyzer : SingleSuccessorOperator, IAnalyzer, IIterationBasedOperator, ISingleObjectiveOperator { 35 35 -
branches/PersistenceOverhaul/HeuristicLab.Analysis/3.3/QualityAnalysis/ScaledQualityDifferenceAnalyzer.cs
r13368 r14711 32 32 The difference lies in the interval [0;1] if the range [min;max] is as large as the observed quality values, otherwise the difference will become < 0 or > 1. 33 33 A value towards 0 always means that it's closer to the better fitness value, while a value towards 1 means that it's closer to the worse fitness value.")] 34 [Storable Class("DFE2E8CE-6274-485F-A418-F9BA258D58A0")]34 [StorableType("DFE2E8CE-6274-485F-A418-F9BA258D58A0")] 35 35 public class ScaledQualityDifferenceAnalyzer : SingleSuccessorOperator, IAnalyzer, ISingleObjectiveOperator { 36 36 public virtual bool EnabledByDefault {
Note: See TracChangeset
for help on using the changeset viewer.