Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/04/17 17:19:35 (8 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.Problems.GeneticProgramming/3.3/Boolean
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/PersistenceReintegration/HeuristicLab.Problems.GeneticProgramming/3.3/Boolean/EvenParityProblem.cs

    r14185 r14927  
    2828using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
    2929using HeuristicLab.Parameters;
    30 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     30using HeuristicLab.Persistence;
    3131
    3232
     
    3434  [Item("Even Parity Problem", "The Boolean even parity genetic programming problem. See Koza, 1992, page 529 section 20.2 Symbolic Regression of Even-Parity Functions")]
    3535  [Creatable(CreatableAttribute.Categories.GeneticProgrammingProblems, Priority = 900)]
    36   [StorableClass]
     36  [StorableType("6fa3fdae-9482-466f-8c87-9cc77c2c2ff1")]
    3737  public sealed class EvenParityProblem : SymbolicExpressionTreeProblem {
    3838
  • branches/PersistenceReintegration/HeuristicLab.Problems.GeneticProgramming/3.3/Boolean/MultiplexerProblem.cs

    r14185 r14927  
    2929using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
    3030using HeuristicLab.Parameters;
    31 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     31using HeuristicLab.Persistence;
    3232
    3333
     
    3636    "The Boolean multiplexer genetic programming problem. See Koza 1992, page 171, section 7.4.1 11-multiplexer.")]
    3737  [Creatable(CreatableAttribute.Categories.GeneticProgrammingProblems, Priority = 900)]
    38   [StorableClass]
     38  [StorableType("d6062590-6916-4a32-9ab3-1d0b33079e5f")]
    3939  public sealed class MultiplexerProblem : SymbolicExpressionTreeProblem {
    4040
Note: See TracChangeset for help on using the changeset viewer.