Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/28/19 17:19:09 (5 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/JobSequenceMatrix/Decoder/JSMDecoder.cs

    r13469 r16725  
    2323using System.Collections.Generic;
    2424using System.Linq;
     25using HEAL.Attic;
    2526using HeuristicLab.Common;
    2627using HeuristicLab.Core;
     
    2829using HeuristicLab.Encodings.PermutationEncoding;
    2930using HeuristicLab.Parameters;
    30 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    3131using HeuristicLab.Random;
    3232
    3333namespace HeuristicLab.Encodings.ScheduleEncoding {
    3434  [Item("JobSequenceMatrixDecoder", "Applies the GifflerThompson algorithm to create an active schedule from a JobSequence Matrix.")]
    35   [StorableClass]
     35  [StorableType("BBE354C2-7599-43CC-ACDC-F8F0F65BE3F5")]
    3636  public class JSMDecoder : ScheduleDecoder<JSMEncoding> {
    3737
     
    5252
    5353    [StorableConstructor]
    54     protected JSMDecoder(bool deserializing) : base(deserializing) { }
     54    protected JSMDecoder(StorableConstructorFlag _) : base(_) { }
    5555    protected JSMDecoder(JSMDecoder original, Cloner cloner) : base(original, cloner) { }
    5656    public override IDeepCloneable Clone(Cloner cloner) {
Note: See TracChangeset for help on using the changeset viewer.