Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/04/17 17:19:35 (7 years ago)
Author:
gkronber
Message:

#2520: changed all usages of StorableClass to use StorableType with an auto-generated GUID (did not add StorableType to other type definitions yet)

Location:
branches/PersistenceReintegration/HeuristicLab.Algorithms.RAPGA/3.3
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • branches/PersistenceReintegration/HeuristicLab.Algorithms.RAPGA/3.3/Analyzers/OffspringSuccessAnalyzer.cs

    r14185 r14927  
    2828using HeuristicLab.Optimization.Operators;
    2929using HeuristicLab.Parameters;
    30 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     30using HeuristicLab.Persistence;
    3131
    3232namespace HeuristicLab.Algorithms.RAPGA {
     
    3535  /// </summary>
    3636  [Item("OffspringSuccessAnalyzer", "An operator which analyzes the success of the created offspring in a generation.")]
    37   [StorableClass]
     37  [StorableType("a1ad0991-e909-42b4-bb4f-9e12082fa9ce")]
    3838  public sealed class OffspringSuccessAnalyzer : AlgorithmOperator, IAnalyzer {
    3939    #region Parameter properties
  • branches/PersistenceReintegration/HeuristicLab.Algorithms.RAPGA/3.3/Analyzers/PopulationSizeAnalyzer.cs

    r14185 r14927  
    2828using HeuristicLab.Optimization.Operators;
    2929using HeuristicLab.Parameters;
    30 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     30using HeuristicLab.Persistence;
    3131
    3232namespace HeuristicLab.Algorithms.RAPGA {
     
    3535  /// </summary>
    3636  [Item("PopulationSizeAnalyzer", "An operator which analyzes the size of the population in a scope tree.")]
    37   [StorableClass]
     37  [StorableType("dd270bc1-1914-4689-88bc-4e3eed2bca38")]
    3838  public sealed class PopulationSizeAnalyzer : AlgorithmOperator, IAnalyzer {
    3939    #region Parameter properties
  • branches/PersistenceReintegration/HeuristicLab.Algorithms.RAPGA/3.3/Analyzers/SelectionPressureAnalyzer.cs

    r14185 r14927  
    2828using HeuristicLab.Optimization.Operators;
    2929using HeuristicLab.Parameters;
    30 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     30using HeuristicLab.Persistence;
    3131
    3232namespace HeuristicLab.Algorithms.RAPGA {
     
    3535  /// </summary>
    3636  [Item("SelectionPressureAnalyzer", "An operator which analyzes the actual selection pressure.")]
    37   [StorableClass]
     37  [StorableType("e2fe0838-5abe-475a-9f9a-719f608f0347")]
    3838  public sealed class SelectionPressureAnalyzer : AlgorithmOperator, IAnalyzer {
    3939    #region Parameter properties
  • branches/PersistenceReintegration/HeuristicLab.Algorithms.RAPGA/3.3/DuplicatesSelector.cs

    r14185 r14927  
    2626using HeuristicLab.Optimization;
    2727using HeuristicLab.Parameters;
    28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HeuristicLab.Persistence;
    2929using HeuristicLab.Selection;
    3030
     
    3737  /// </remarks>
    3838  [Item("DuplicatesSelector", "A selection operator which considers a single solution representation and selects duplicates. The remaining scope then contains unique solutions and the selected scope their duplicates.")]
    39   [StorableClass]
     39  [StorableType("ddb4275c-8643-49eb-b58b-2d666096cf79")]
    4040  public sealed class DuplicatesSelector : SingleObjectiveSelector {
    4141    public IValueLookupParameter<ISolutionSimilarityCalculator> SimilarityCalculatorParameter {
  • branches/PersistenceReintegration/HeuristicLab.Algorithms.RAPGA/3.3/ProgressiveOffspringPreserver.cs

    r14185 r14927  
    2727using HeuristicLab.Optimization;
    2828using HeuristicLab.Parameters;
    29 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     29using HeuristicLab.Persistence;
    3030
    3131namespace HeuristicLab.Algorithms.RAPGA {
     
    3737  /// </remarks>
    3838  [Item("ProgressiveOffspringPreserver", "An operator that progressively selects offspring by adding it to a scope list. The operator also performs duplication control.")]
    39   [StorableClass]
     39  [StorableType("d878406c-bd42-4f26-a192-491708467a19")]
    4040  public sealed class ProgressiveOffspringPreserver : SingleSuccessorOperator {
    4141    #region Parameter Properties
  • branches/PersistenceReintegration/HeuristicLab.Algorithms.RAPGA/3.3/RAPGA.cs

    r14185 r14927  
    3030using HeuristicLab.Optimization.Operators;
    3131using HeuristicLab.Parameters;
    32 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     32using HeuristicLab.Persistence;
    3333using HeuristicLab.PluginInfrastructure;
    3434using HeuristicLab.Random;
     
    4040  [Item("RAPGA", "A relevant alleles preserving genetic algorithm (Affenzeller, M. et al. 2007. Self-adaptive population size adjustment for genetic algorithms. Proceedings of Computer Aided Systems Theory: EuroCAST 2007, Lecture Notes in Computer Science, pp 820–828. Springer).")]
    4141  [Creatable(CreatableAttribute.Categories.PopulationBasedAlgorithms, Priority = 140)]
    42   [StorableClass]
     42  [StorableType("6254477b-2218-4c09-b4ac-504eb2ca65b4")]
    4343  public sealed class RAPGA : HeuristicOptimizationEngineAlgorithm, IStorableContent {
    4444    public string Filename { get; set; }
  • branches/PersistenceReintegration/HeuristicLab.Algorithms.RAPGA/3.3/RAPGAMainLoop.cs

    r14185 r14927  
    2727using HeuristicLab.Optimization.Operators;
    2828using HeuristicLab.Parameters;
    29 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     29using HeuristicLab.Persistence;
    3030using HeuristicLab.Selection;
    3131
     
    3535  /// </summary>
    3636  [Item("RAPGAMainLoop", "An operator which represents the main loop of a relevant alleles preserving genetic algorithm.")]
    37   [StorableClass]
     37  [StorableType("3a731ec3-56e8-4435-a564-9b7995115649")]
    3838  public sealed class RAPGAMainLoop : AlgorithmOperator {
    3939    #region Parameter properties
  • branches/PersistenceReintegration/HeuristicLab.Algorithms.RAPGA/3.3/ScopeRestorer.cs

    r14185 r14927  
    2424using HeuristicLab.Operators;
    2525using HeuristicLab.Parameters;
    26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     26using HeuristicLab.Persistence;
    2727
    2828namespace HeuristicLab.Algorithms.RAPGA {
     
    3434  /// </remarks>
    3535  [Item("ScopeRestorer", "An operator that restores created offspring from a scope list. It adds all scopes in the list as sub-scopes to the current scope.")]
    36   [StorableClass]
     36  [StorableType("5b69e2c1-ecd9-44fd-afa3-26cf14a798e7")]
    3737  public class ScopeRestorer : SingleSuccessorOperator {
    3838    #region Parameter Properties
Note: See TracChangeset for help on using the changeset viewer.