Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/03/17 11:41:43 (8 years ago)
Author:
gkronber
Message:

#2520

  • renamed StorableClass -> StorableType
  • changed persistence to use GUIDs instead of type names
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  
    3535  /// </summary>
    3636  [Item("BestAverageWorstQualityAnalyzer", "An operator which analyzes the best, average and worst quality of solutions in the scope tree.")]
    37   [StorableClass("A8115F53-3244-48F8-AF1C-52BEA7A17D13")]
     37  [StorableType("A8115F53-3244-48F8-AF1C-52BEA7A17D13")]
    3838  public sealed class BestAverageWorstQualityAnalyzer : AlgorithmOperator, IAnalyzer, ISingleObjectiveOperator {
    3939    #region Parameter properties
  • branches/PersistenceOverhaul/HeuristicLab.Analysis/3.3/QualityAnalysis/BestAverageWorstQualityCalculator.cs

    r13368 r14711  
    3333  /// </summary>
    3434  [Item("BestAverageWorstQualityCalculator", "An operator which calculates the best, average and worst quality of solutions in the scope tree.")]
    35   [StorableClass("D49EF6BB-840B-487F-8D6A-AAD1DA4061C8")]
     35  [StorableType("D49EF6BB-840B-487F-8D6A-AAD1DA4061C8")]
    3636  public sealed class BestAverageWorstQualityCalculator : SingleSuccessorOperator, ISingleObjectiveOperator {
    3737    public ValueLookupParameter<BoolValue> MaximizationParameter {
  • branches/PersistenceOverhaul/HeuristicLab.Analysis/3.3/QualityAnalysis/BestQualityMemorizer.cs

    r13368 r14711  
    3333  /// </summary>
    3434  [Item("BestQualityMemorizer", "An operator that updates the best quality found so far with those qualities contained in the scope tree.")]
    35   [StorableClass("380E0284-8FAC-4D7A-874F-AFE78CD4EF21")]
     35  [StorableType("380E0284-8FAC-4D7A-874F-AFE78CD4EF21")]
    3636  public class BestQualityMemorizer : SingleSuccessorOperator, ISingleObjectiveOperator {
    3737    public ValueLookupParameter<BoolValue> MaximizationParameter {
  • branches/PersistenceOverhaul/HeuristicLab.Analysis/3.3/QualityAnalysis/QualityAnalyzer.cs

    r13368 r14711  
    3535  /// </summary>
    3636  [Item("QualityAnalyzer", "An operator which analyzes the quality of solutions in the scope tree.")]
    37   [StorableClass("E4B4A263-6263-43C7-B2A8-DD569A7B4067")]
     37  [StorableType("E4B4A263-6263-43C7-B2A8-DD569A7B4067")]
    3838  public sealed class QualityAnalyzer : AlgorithmOperator, IAnalyzer, ISingleObjectiveOperator {
    3939    #region Parameter properties
  • branches/PersistenceOverhaul/HeuristicLab.Analysis/3.3/QualityAnalysis/QualityDifferenceCalculator.cs

    r13368 r14711  
    3232  /// </summary>
    3333  [Item("QualityDifferenceCalculator", "An operator which calculates the absolute and relative difference of two quality values.")]
    34   [StorableClass("EF329063-1677-41EF-8386-0E634A00BEEC")]
     34  [StorableType("EF329063-1677-41EF-8386-0E634A00BEEC")]
    3535  public class QualityDifferenceCalculator : SingleSuccessorOperator {
    3636    public IValueLookupParameter<DoubleValue> FirstQualityParameter {
  • branches/PersistenceOverhaul/HeuristicLab.Analysis/3.3/QualityAnalysis/QualityDistributionAnalyzer.cs

    r13368 r14711  
    3131namespace HeuristicLab.Analysis.QualityAnalysis {
    3232  [Item("QualityDistributionAnalyzer", "Analyzes the distribution of the quality values in that it adds a Histogram of them into the result collection.")]
    33   [StorableClass("9A106F24-B6DE-4F65-BC1A-358783ADA5D2")]
     33  [StorableType("9A106F24-B6DE-4F65-BC1A-358783ADA5D2")]
    3434  public class QualityDistributionAnalyzer : SingleSuccessorOperator, IAnalyzer, IIterationBasedOperator, ISingleObjectiveOperator {
    3535
  • branches/PersistenceOverhaul/HeuristicLab.Analysis/3.3/QualityAnalysis/ScaledQualityDifferenceAnalyzer.cs

    r13368 r14711  
    3232The 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.
    3333A 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   [StorableClass("DFE2E8CE-6274-485F-A418-F9BA258D58A0")]
     34  [StorableType("DFE2E8CE-6274-485F-A418-F9BA258D58A0")]
    3535  public class ScaledQualityDifferenceAnalyzer : SingleSuccessorOperator, IAnalyzer, ISingleObjectiveOperator {
    3636    public virtual bool EnabledByDefault {
Note: See TracChangeset for help on using the changeset viewer.