Changeset 16565 for trunk/HeuristicLab.Encodings.ScheduleEncoding/3.3/JobSequenceMatrix/Manipulators
- Timestamp:
- 01/28/19 13:41:42 (6 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/2520_PersistenceReintegration (added) merged: 16451-16454,16462,16465-16468,16470-16472,16474,16476-16477,16479-16487,16529-16530,16539,16551-16555,16558-16559,16562-16564
- Property svn:mergeinfo changed
-
trunk/HeuristicLab.Encodings.ScheduleEncoding/3.3/JobSequenceMatrix/Manipulators/JSMManipulator.cs
r15583 r16565 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 23 23 using HeuristicLab.Common; 24 24 using HeuristicLab.Core; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Attic; 26 26 27 27 namespace HeuristicLab.Encodings.ScheduleEncoding.JobSequenceMatrix { 28 28 [Item("JSMManipulator", "An operator which manipulates a JSM representation.")] 29 [Storable Class]29 [StorableType("E190A576-B835-4343-9F0C-096E970B8DDD")] 30 30 public abstract class JSMManipulator : ScheduleManipulator, IJSMOperator { 31 31 [StorableConstructor] 32 protected JSMManipulator( bool deserializing) : base(deserializing) { }32 protected JSMManipulator(StorableConstructorFlag _) : base(_) { } 33 33 protected JSMManipulator(JSMManipulator original, Cloner cloner) : base(original, cloner) { } 34 34 public JSMManipulator() -
trunk/HeuristicLab.Encodings.ScheduleEncoding/3.3/JobSequenceMatrix/Manipulators/JSMShiftChangeManipulator.cs
r15583 r16565 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 26 26 using HeuristicLab.Core; 27 27 using HeuristicLab.Encodings.PermutationEncoding; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 29 29 30 30 namespace HeuristicLab.Encodings.ScheduleEncoding.JobSequenceMatrix { 31 31 [Item("JSMShiftChangeManipulator", "Represents a manipulation operation where the operations of a randomly determined job are shifted in one direction for all resources.")] 32 [Storable Class]32 [StorableType("69212E02-2006-493D-92C0-0EF4EFDAAF8A")] 33 33 public class JSMShiftChangeManipulator : JSMManipulator { 34 34 35 35 [StorableConstructor] 36 protected JSMShiftChangeManipulator( bool deserializing) : base(deserializing) { }36 protected JSMShiftChangeManipulator(StorableConstructorFlag _) : base(_) { } 37 37 protected JSMShiftChangeManipulator(JSMShiftChangeManipulator original, Cloner cloner) : base(original, cloner) { } 38 38 public JSMShiftChangeManipulator() : base() { } -
trunk/HeuristicLab.Encodings.ScheduleEncoding/3.3/JobSequenceMatrix/Manipulators/JSMSwapManipulator.cs
r15583 r16565 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 24 24 using HeuristicLab.Core; 25 25 using HeuristicLab.Encodings.PermutationEncoding; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Attic; 27 27 28 28 namespace HeuristicLab.Encodings.ScheduleEncoding.JobSequenceMatrix { 29 29 [Item("JSMSwapManipulator", "Represents a manipulation operation swapping parts of the individual.")] 30 [Storable Class]30 [StorableType("7BB1535F-C886-40A3-9F7C-4A54CED90A6E")] 31 31 public class JSMSwapManipulator : JSMManipulator { 32 32 33 33 [StorableConstructor] 34 protected JSMSwapManipulator( bool deserializing) : base(deserializing) { }34 protected JSMSwapManipulator(StorableConstructorFlag _) : base(_) { } 35 35 protected JSMSwapManipulator(JSMSwapManipulator original, Cloner cloner) : base(original, cloner) { } 36 36 public JSMSwapManipulator() : base() { }
Note: See TracChangeset
for help on using the changeset viewer.