Changeset 16725 for branches/2521_ProblemRefactoring/HeuristicLab.Encodings.ScheduleEncoding/3.3/JobSequenceMatrix
- Timestamp:
- 03/28/19 17:19:09 (6 years ago)
- Location:
- branches/2521_ProblemRefactoring/HeuristicLab.Encodings.ScheduleEncoding/3.3/JobSequenceMatrix
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring/HeuristicLab.Encodings.ScheduleEncoding/3.3/JobSequenceMatrix/Decoder/JSMDecoder.cs
r13469 r16725 23 23 using System.Collections.Generic; 24 24 using System.Linq; 25 using HEAL.Attic; 25 26 using HeuristicLab.Common; 26 27 using HeuristicLab.Core; … … 28 29 using HeuristicLab.Encodings.PermutationEncoding; 29 30 using HeuristicLab.Parameters; 30 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;31 31 using HeuristicLab.Random; 32 32 33 33 namespace HeuristicLab.Encodings.ScheduleEncoding { 34 34 [Item("JobSequenceMatrixDecoder", "Applies the GifflerThompson algorithm to create an active schedule from a JobSequence Matrix.")] 35 [Storable Class]35 [StorableType("BBE354C2-7599-43CC-ACDC-F8F0F65BE3F5")] 36 36 public class JSMDecoder : ScheduleDecoder<JSMEncoding> { 37 37 … … 52 52 53 53 [StorableConstructor] 54 protected JSMDecoder( bool deserializing) : base(deserializing) { }54 protected JSMDecoder(StorableConstructorFlag _) : base(_) { } 55 55 protected JSMDecoder(JSMDecoder original, Cloner cloner) : base(original, cloner) { } 56 56 public override IDeepCloneable Clone(Cloner cloner) { -
branches/2521_ProblemRefactoring/HeuristicLab.Encodings.ScheduleEncoding/3.3/JobSequenceMatrix/JobSequenceMatrixEncoding.cs
r13443 r16725 25 25 using System.Collections.Generic; 26 26 using System.Linq; 27 using HEAL.Attic; 27 28 using HeuristicLab.Common; 28 29 using HeuristicLab.Core; 29 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;30 30 using HeuristicLab.PluginInfrastructure; 31 31 32 32 namespace HeuristicLab.Encodings.ScheduleEncoding { 33 [Storable Class]33 [StorableType("9C090369-0214-42E6-8C3E-369751F5A9E1")] 34 34 public sealed class JobSequenceMatrixEncoding : ScheduleEncoding<JSMEncoding> { 35 35 [StorableConstructor] 36 private JobSequenceMatrixEncoding( bool deserializing) : base(deserializing) { }36 private JobSequenceMatrixEncoding(StorableConstructorFlag _) : base(_) { } 37 37 private JobSequenceMatrixEncoding(JobSequenceMatrixEncoding original, Cloner cloner) : base(original, cloner) { } 38 38 public override IDeepCloneable Clone(Cloner cloner) {
Note: See TracChangeset
for help on using the changeset viewer.