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/JobSequenceMatrix/JSMEncoding.cs

    r16453 r16462  
    2020#endregion
    2121
    22 using System;
    2322using System.Text;
    2423using HeuristicLab.Common;
    2524using HeuristicLab.Core;
    2625using HeuristicLab.Encodings.PermutationEncoding;
    27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     26using HEAL.Fossil;
    2827
    2928namespace HeuristicLab.Encodings.ScheduleEncoding.JobSequenceMatrix {
    3029  [Item("JobSequenceMatrixEncoding", "Represents an encoding for a scheduling Problem using a list of job sequences to deliver scheduleinformation.")]
    31   [StorableClass]
     30  [StorableType("8F19A51A-45F1-4C1D-BCD4-A9F57E40DDC5")]
    3231  public class JSMEncoding : Item, IScheduleEncoding {
    3332
     
    3635
    3736    [StorableConstructor]
    38     protected JSMEncoding(bool deserializing) : base(deserializing) { }
     37    protected JSMEncoding(StorableConstructorFlag _) : base(_) { }
    3938    protected JSMEncoding(JSMEncoding original, Cloner cloner)
    4039      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.