Free cookie consent management tool by TermsFeed Policy Generator

Changeset 3000


Ignore:
Timestamp:
03/11/10 04:02:15 (14 years ago)
Author:
swagner
Message:

Updated StorableClass attribute on some more classes (#548)

Location:
trunk/sources
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Algorithms.SGA/3.3/SGAOperator.cs

    r2924 r3000  
    2626using HeuristicLab.Operators;
    2727using HeuristicLab.Parameters;
     28using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2829using HeuristicLab.Selection;
    2930
     
    3435  [Item("SGAOperator", "An operator which represents a Standard Genetic Algorithm.")]
    3536  [Creatable("Test")]
     37  [StorableClass(StorableClassType.Empty)]
    3638  public class SGAOperator : AlgorithmOperator {
    3739    #region Parameter properties
  • trunk/sources/HeuristicLab.Operators/3.3/CombinedOperator.cs

    r2851 r3000  
    2222using HeuristicLab.Collections;
    2323using HeuristicLab.Core;
     24using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2425
    2526namespace HeuristicLab.Operators {
     
    2930  [Item("CombinedOperator", "An operator which contains an operator graph.")]
    3031  [Creatable("Test")]
     32  [StorableClass(StorableClassType.Empty)]
    3133  public sealed class CombinedOperator : AlgorithmOperator, IParameterizedItem {
    3234    public new ParameterCollection Parameters {
  • trunk/sources/HeuristicLab.Operators/3.3/ParallelSubScopesProcessor.cs

    r2834 r3000  
    2121
    2222using HeuristicLab.Core;
     23using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2324
    2425namespace HeuristicLab.Operators {
     
    2829  [Item("ParallelSubScopesProcessor", "An operator which contains multiple operators of which each is applied in parallel on one sub-scope of the current scope. The first operator is applied on the first sub-scope, the second on the second, and so on.")]
    2930  [Creatable("Test")]
     31  [StorableClass(StorableClassType.Empty)]
    3032  public sealed class ParallelSubScopesProcessor : MultipleCallsOperator {
    3133    public ParallelSubScopesProcessor()
  • trunk/sources/HeuristicLab.Operators/3.3/SequentialSubScopesProcessor.cs

    r2834 r3000  
    2121
    2222using HeuristicLab.Core;
     23using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2324
    2425namespace HeuristicLab.Operators {
     
    2829  [Item("SequentialSubScopesProcessor", "An operator which contains multiple operators of which each is applied sequentially on one sub-scope of the current scope. The first operator is applied on the first sub-scope, the second on the second, and so on.")]
    2930  [Creatable("Test")]
     31  [StorableClass(StorableClassType.Empty)]
    3032  public sealed class SequentialSubScopesProcessor : MultipleCallsOperator {
    3133    public SequentialSubScopesProcessor()
Note: See TracChangeset for help on using the changeset viewer.