Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/28/18 16:10:48 (5 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.ScheduleEncoding/3.3/PriorityRulesVector/Manipulators/PRVUniformOnePositionManipulator.cs

    r16453 r16462  
    2424using HeuristicLab.Data;
    2525using HeuristicLab.Encodings.IntegerVectorEncoding;
    26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     26using HEAL.Fossil;
    2727
    2828namespace HeuristicLab.Encodings.ScheduleEncoding.PriorityRulesVector {
    2929  [Item("PRVUniformOnePositionManipulator", "Represents a manipulation operation inserting parts of the individual at another position.")]
    30   [StorableClass]
     30  [StorableType("5C6A1D79-88DD-42D7-94C1-57C16BA44148")]
    3131  public class PRVUniformOnePositionManipulator : PRVManipulator {
    3232
    3333    [StorableConstructor]
    34     protected PRVUniformOnePositionManipulator(bool deserializing) : base(deserializing) { }
     34    protected PRVUniformOnePositionManipulator(StorableConstructorFlag _) : base(_) { }
    3535    protected PRVUniformOnePositionManipulator(PRVUniformOnePositionManipulator original, Cloner cloner) : base(original, cloner) { }
    3636    public PRVUniformOnePositionManipulator() : base() { }
Note: See TracChangeset for help on using the changeset viewer.