Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/28/18 16:10:48 (6 years ago)
Author:
jkarder
Message:

#2520: worked on reintegration of new persistence

  • added nuget references to HEAL.Fossil
  • added StorableType attributes to many classes
  • changed signature of StorableConstructors
  • removed some classes in old persistence
  • removed some unnecessary usings
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2520_PersistenceReintegration/HeuristicLab.Encodings.PermutationEncoding/3.3/Manipulators/InversionManipulator.cs

    r16453 r16462  
    2222using HeuristicLab.Common;
    2323using HeuristicLab.Core;
    24 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     24using HEAL.Fossil;
    2525
    2626namespace HeuristicLab.Encodings.PermutationEncoding {
     
    3232  /// </remarks>
    3333  [Item("InversionManipulator", "An operator which inverts a randomly chosen part of a permutation. It is implemented as described in Eiben, A.E. and Smith, J.E. 2003. Introduction to Evolutionary Computation. Natural Computing Series, Springer-Verlag Berlin Heidelberg.")]
    34   [StorableClass]
     34  [StorableType("F43DF081-19FB-4082-B136-EC1A77E0468A")]
    3535  public class InversionManipulator : PermutationManipulator {
    3636    [StorableConstructor]
    37     protected InversionManipulator(bool deserializing) : base(deserializing) { }
     37    protected InversionManipulator(StorableConstructorFlag _) : base(_) { }
    3838    protected InversionManipulator(InversionManipulator original, Cloner cloner) : base(original, cloner) { }
    3939    public InversionManipulator() : base() { }
Note: See TracChangeset for help on using the changeset viewer.