Changeset 16725 for branches/2521_ProblemRefactoring/HeuristicLab.Encodings.ScheduleEncoding/3.3/PermutationWithRepetition/Decoder
- Timestamp:
- 03/28/19 17:19:09 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring/HeuristicLab.Encodings.ScheduleEncoding/3.3/PermutationWithRepetition/Decoder/PWRDecoder.cs
r13469 r16725 20 20 #endregion 21 21 22 using System;22 using HEAL.Attic; 23 23 using HeuristicLab.Common; 24 24 using HeuristicLab.Core; 25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;26 25 27 26 namespace HeuristicLab.Encodings.ScheduleEncoding { 28 27 [Item("PWRDecoder", "An item used to convert a PWR-individual into a generalized schedule.")] 29 [Storable Class]28 [StorableType("60D171BE-9704-40E1-9C63-0E56D95403CD")] 30 29 public class PWRDecoder : ScheduleDecoder<PWREncoding> { 31 30 [StorableConstructor] 32 protected PWRDecoder( bool deserializing) : base(deserializing) { }31 protected PWRDecoder(StorableConstructorFlag _) : base(_) { } 33 32 protected PWRDecoder(PWRDecoder original, Cloner cloner) : base(original, cloner) { } 34 33 public PWRDecoder() : base() { }
Note: See TracChangeset
for help on using the changeset viewer.