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.PermutationEncoding/3.3/Permutation.cs

    r16453 r16462  
    2424using HeuristicLab.Core;
    2525using HeuristicLab.Data;
    26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     26using HEAL.Fossil;
    2727
    2828namespace HeuristicLab.Encodings.PermutationEncoding {
    2929  [Item("Permutation", "Represents a permutation of integer values.")]
    30   [StorableClass]
     30  [StorableType("FBBCFA53-C1AE-4069-907B-99C720F5AC51")]
    3131  public class Permutation : IntArray {
    3232    [Storable]
     
    4545
    4646    [StorableConstructor]
    47     protected Permutation(bool deserializing) : base(deserializing) { }
     47    protected Permutation(StorableConstructorFlag _) : base(_) { }
    4848    protected Permutation(Permutation original, Cloner cloner)
    4949      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.