Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/28/19 17:19:09 (6 years ago)
Author:
abeham
Message:

#2521:

  • Adapt Encodings.ScheduleEncoding to new persistence
  • Adapt Problems.Programmable to new persistence
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2521_ProblemRefactoring/HeuristicLab.Encodings.ScheduleEncoding/3.3/ScheduleEncoding/Decoder/DirectScheduleDecoder.cs

    r13469 r16725  
    2020#endregion
    2121
     22using HEAL.Attic;
    2223using HeuristicLab.Common;
    2324using HeuristicLab.Core;
    24 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2525
    2626namespace HeuristicLab.Encodings.ScheduleEncoding {
    2727  [Item("DirectScheduleDecoder", "An item used to convert a direct schedule into a generalized schedule.")]
    28   [StorableClass]
     28  [StorableType("151C772B-6E6C-40D9-B171-F5626C676A5F")]
    2929  public class DirectScheduleDecoder : ScheduleDecoder<Schedule> {
    3030    [StorableConstructor]
    31     protected DirectScheduleDecoder(bool deserializing) : base(deserializing) { }
     31    protected DirectScheduleDecoder(StorableConstructorFlag _) : base(_) { }
    3232    protected DirectScheduleDecoder(DirectScheduleDecoder original, Cloner cloner) : base(original, cloner) { }
    3333    public DirectScheduleDecoder() : base() { }
Note: See TracChangeset for help on using the changeset viewer.