Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/10/10 18:28:50 (14 years ago)
Author:
epitzer
Message:

Make StorableClass attribute compulsory for StorableSerializer to work, add named property StorableClassType to choose between Empty and MarkedOnly, later other options will be added. (#548)

Location:
trunk/sources/HeuristicLab.Evolutionary/3.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Evolutionary/3.3/ChildrenCreator.cs

    r2834 r2994  
    3737  /// </remarks>
    3838  [Item("ChildrenCreator", "An operator which is used to prepare crossover. The sub-scopes of the current scope the operator is applied on represent the parents. The operator creates new and empty scopes for each child, adds the scopes that represent the child's parents as sub-scopes to the child and adds the child as sub-scope to the current scope.")]
    39   [EmptyStorableClass]
     39  [StorableClass(StorableClassType.Empty)]
    4040  [Creatable("Test")]
    4141  public sealed class ChildrenCreator : SingleSuccessorOperator {
  • trunk/sources/HeuristicLab.Evolutionary/3.3/PopulationCreator.cs

    r2882 r2994  
    3232  /// </summary>
    3333  [Item("PopulationCreator", "An operator which creates a new population of solutions.")]
    34   [EmptyStorableClass]
     34  [StorableClass(StorableClassType.Empty)]
    3535  [Creatable("Test")]
    3636  public sealed class PopulationCreator : SingleSuccessorOperator {
Note: See TracChangeset for help on using the changeset viewer.