Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/24/15 17:08:13 (9 years ago)
Author:
ascheibe
Message:

#2520 added guids to storable classes

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

Legend:

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

    r12012 r13368  
    1 #region License Information
     1#region License Information
    22/* HeuristicLab
    33 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    3535  /// </summary>
    3636  [Item("OffspringSuccessAnalyzer", "An operator which analyzes the success of the created offspring in a generation.")]
    37   [StorableClass]
     37  [StorableClass("F9EFA45A-48AC-430F-8C22-20DA571D5EB0")]
    3838  public sealed class OffspringSuccessAnalyzer : AlgorithmOperator, IAnalyzer {
    3939    #region Parameter properties
  • branches/PersistenceOverhaul/HeuristicLab.Algorithms.RAPGA/3.3/Analyzers/PopulationSizeAnalyzer.cs

    r12012 r13368  
    1 #region License Information
     1#region License Information
    22/* HeuristicLab
    33 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    3535  /// </summary>
    3636  [Item("PopulationSizeAnalyzer", "An operator which analyzes the size of the population in a scope tree.")]
    37   [StorableClass]
     37  [StorableClass("2390AB01-2A9D-49DE-B15A-2CF64C5A13B4")]
    3838  public sealed class PopulationSizeAnalyzer : AlgorithmOperator, IAnalyzer {
    3939    #region Parameter properties
  • branches/PersistenceOverhaul/HeuristicLab.Algorithms.RAPGA/3.3/Analyzers/SelectionPressureAnalyzer.cs

    r12012 r13368  
    1 #region License Information
     1#region License Information
    22/* HeuristicLab
    33 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    3535  /// </summary>
    3636  [Item("SelectionPressureAnalyzer", "An operator which analyzes the actual selection pressure.")]
    37   [StorableClass]
     37  [StorableClass("18D73837-FBC9-405D-B2F1-00FD04FB6546")]
    3838  public sealed class SelectionPressureAnalyzer : AlgorithmOperator, IAnalyzer {
    3939    #region Parameter properties
  • branches/PersistenceOverhaul/HeuristicLab.Algorithms.RAPGA/3.3/DuplicatesSelector.cs

    r12069 r13368  
    1 #region License Information
     1#region License Information
    22/* HeuristicLab
    33 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    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  [StorableClass("060D7589-779A-449C-9D27-192F6B7ABEDB")]
    4040  public sealed class DuplicatesSelector : SingleObjectiveSelector {
    4141    public IValueLookupParameter<ISolutionSimilarityCalculator> SimilarityCalculatorParameter {
  • branches/PersistenceOverhaul/HeuristicLab.Algorithms.RAPGA/3.3/ProgressiveOffspringPreserver.cs

    r12069 r13368  
    1 #region License Information
     1#region License Information
    22/* HeuristicLab
    33 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    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  [StorableClass("C24B1503-DDA1-4CB3-834A-EDDB702EB0C9")]
    4040  public sealed class ProgressiveOffspringPreserver : SingleSuccessorOperator {
    4141    #region Parameter Properties
  • branches/PersistenceOverhaul/HeuristicLab.Algorithms.RAPGA/3.3/RAPGA.cs

    r12770 r13368  
    1 #region License Information
     1#region License Information
    22/* HeuristicLab
    33 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    3838  /// A relevant alleles preserving genetic algorithm.
    3939  /// </summary>
    40   [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 820828. Springer).")]
     40  [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  [StorableClass("B887FDF7-2610-461F-95A0-1AA6DA425130")]
    4343  public sealed class RAPGA : HeuristicOptimizationEngineAlgorithm, IStorableContent {
    4444    public string Filename { get; set; }
  • branches/PersistenceOverhaul/HeuristicLab.Algorithms.RAPGA/3.3/RAPGAMainLoop.cs

    r12012 r13368  
    1 #region License Information
     1#region License Information
    22/* HeuristicLab
    33 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    3535  /// </summary>
    3636  [Item("RAPGAMainLoop", "An operator which represents the main loop of a relevant alleles preserving genetic algorithm.")]
    37   [StorableClass]
     37  [StorableClass("4F237A68-FCA8-4BBB-9095-F51595C57CB9")]
    3838  public sealed class RAPGAMainLoop : AlgorithmOperator {
    3939    #region Parameter properties
  • branches/PersistenceOverhaul/HeuristicLab.Algorithms.RAPGA/3.3/ScopeRestorer.cs

    r12012 r13368  
    1 #region License Information
     1#region License Information
    22/* HeuristicLab
    33 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    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  [StorableClass("AAA60984-851F-421C-AE35-19F6F7173EA9")]
    3737  public class ScopeRestorer : SingleSuccessorOperator {
    3838    #region Parameter Properties
Note: See TracChangeset for help on using the changeset viewer.