- Timestamp:
- 01/28/19 13:41:42 (6 years ago)
- Location:
- trunk
- Files:
-
- 8 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/PermutationWithRepetition/Crossovers/PWRCrossover.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. … … 22 22 using HeuristicLab.Common; 23 23 using HeuristicLab.Core; 24 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;24 using HEAL.Attic; 25 25 26 26 namespace HeuristicLab.Encodings.ScheduleEncoding.PermutationWithRepetition { 27 27 [Item("PWRCrossover", "An operator which crosses two JSM representations.")] 28 [Storable Class]28 [StorableType("53331857-83AF-4966-940E-1137FBA7205C")] 29 29 public abstract class PWRCrossover : ScheduleCrossover, IPWROperator { 30 30 31 31 [StorableConstructor] 32 protected PWRCrossover( bool deserializing) : base(deserializing) { }32 protected PWRCrossover(StorableConstructorFlag _) : base(_) { } 33 33 protected PWRCrossover(PWRCrossover original, Cloner cloner) : base(original, cloner) { } 34 34 public PWRCrossover() -
trunk/HeuristicLab.Encodings.ScheduleEncoding/3.3/PermutationWithRepetition/Crossovers/PWRGOXCrossover.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. … … 25 25 using HeuristicLab.Core; 26 26 using HeuristicLab.Encodings.IntegerVectorEncoding; 27 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;27 using HEAL.Attic; 28 28 29 29 namespace HeuristicLab.Encodings.ScheduleEncoding.PermutationWithRepetition { 30 30 [Item("PWRGeneralizationOrderCrossover", "Represents a crossover operation swapping sequences of the parents to generate offspring.")] 31 [Storable Class]31 [StorableType("DB974328-5DB4-4B9A-8223-924E929C573B")] 32 32 public class PWRGOXCrossover : PWRCrossover { 33 33 34 34 [StorableConstructor] 35 protected PWRGOXCrossover( bool deserializing) : base(deserializing) { }35 protected PWRGOXCrossover(StorableConstructorFlag _) : base(_) { } 36 36 protected PWRGOXCrossover(PWRGOXCrossover original, Cloner cloner) : base(original, cloner) { } 37 37 public PWRGOXCrossover() : base() { } -
trunk/HeuristicLab.Encodings.ScheduleEncoding/3.3/PermutationWithRepetition/Crossovers/PWRPPXCrossover.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. … … 25 25 using HeuristicLab.Core; 26 26 using HeuristicLab.Encodings.IntegerVectorEncoding; 27 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;27 using HEAL.Attic; 28 28 29 29 namespace HeuristicLab.Encodings.ScheduleEncoding.PermutationWithRepetition { 30 30 [Item("PWRPPXCrossover", "Represents a crossover operation swapping sequences of the parents to generate offspring.")] 31 [Storable Class]31 [StorableType("B5749161-8599-4F89-AAC7-414C53576B10")] 32 32 public class PWRPPXCrossover : PWRCrossover { 33 33 34 34 [StorableConstructor] 35 protected PWRPPXCrossover( bool deserializing) : base(deserializing) { }35 protected PWRPPXCrossover(StorableConstructorFlag _) : base(_) { } 36 36 protected PWRPPXCrossover(PWRPPXCrossover original, Cloner cloner) : base(original, cloner) { } 37 37 public PWRPPXCrossover() : base() { } -
trunk/HeuristicLab.Encodings.ScheduleEncoding/3.3/PermutationWithRepetition/Manipulators/PWRInsertionManipulator.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. … … 25 25 using HeuristicLab.Core; 26 26 using HeuristicLab.Encodings.IntegerVectorEncoding; 27 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;27 using HEAL.Attic; 28 28 29 29 namespace HeuristicLab.Encodings.ScheduleEncoding.PermutationWithRepetition { 30 30 [Item("PWRInsertionManipulator", "Represents a manipulation operation inserting parts of the individual at another position.")] 31 [Storable Class]31 [StorableType("D2813869-42F7-4609-B7E0-4725E7565572")] 32 32 public class PWRInsertionManipulator : PWRManipulator { 33 33 [StorableConstructor] 34 protected PWRInsertionManipulator( bool deserializing) : base(deserializing) { }34 protected PWRInsertionManipulator(StorableConstructorFlag _) : base(_) { } 35 35 protected PWRInsertionManipulator(PWRInsertionManipulator original, Cloner cloner) : base(original, cloner) { } 36 36 public PWRInsertionManipulator() : base() { } -
trunk/HeuristicLab.Encodings.ScheduleEncoding/3.3/PermutationWithRepetition/Manipulators/PWRManipulator.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.PermutationWithRepetition { 28 28 [Item("PWRManipulator", "An operator which manipulates a PWR representation.")] 29 [Storable Class]29 [StorableType("22287F17-B833-40E0-AE6C-F1136DCF4997")] 30 30 public abstract class PWRManipulator : ScheduleManipulator, IPWROperator { 31 31 32 32 [StorableConstructor] 33 protected PWRManipulator( bool deserializing) : base(deserializing) { }33 protected PWRManipulator(StorableConstructorFlag _) : base(_) { } 34 34 protected PWRManipulator(PWRManipulator original, Cloner cloner) : base(original, cloner) { } 35 35 public PWRManipulator() -
trunk/HeuristicLab.Encodings.ScheduleEncoding/3.3/PermutationWithRepetition/PWREncoding.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.IntegerVectorEncoding; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Attic; 27 27 28 28 namespace HeuristicLab.Encodings.ScheduleEncoding.PermutationWithRepetition { 29 29 [Item("PermutationWithRepetitionEncoding", "Represents a encoding for a standard JobShop Scheduling Problem.")] 30 [Storable Class]30 [StorableType("31A66AC4-897D-4986-A6FC-DC301DC06278")] 31 31 public class PWREncoding : Item, IScheduleEncoding { 32 32 … … 35 35 36 36 [StorableConstructor] 37 protected PWREncoding( bool deserializing) : base(deserializing) { }37 protected PWREncoding(StorableConstructorFlag _) : base(_) { } 38 38 protected PWREncoding(PWREncoding original, Cloner cloner) 39 39 : base(original, cloner) { -
trunk/HeuristicLab.Encodings.ScheduleEncoding/3.3/PermutationWithRepetition/PWRRandomCreator.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. … … 25 25 using HeuristicLab.Optimization; 26 26 using HeuristicLab.Parameters; 27 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;27 using HEAL.Attic; 28 28 29 29 namespace HeuristicLab.Encodings.ScheduleEncoding.PermutationWithRepetition { 30 30 [Item("PermutationWithRepetitionRandomCreator", "Creates PWR-individuals at random.")] 31 [Storable Class]31 [StorableType("6E753916-C0FD-4585-B6A6-47FD66ED098F")] 32 32 public class PWRRandomCreator : ScheduleCreator, IStochasticOperator { 33 33 … … 43 43 44 44 [StorableConstructor] 45 protected PWRRandomCreator( bool deserializing) : base(deserializing) { }45 protected PWRRandomCreator(StorableConstructorFlag _) : base(_) { } 46 46 protected PWRRandomCreator(PWRRandomCreator original, Cloner cloner) : base(original, cloner) { } 47 47 public PWRRandomCreator()
Note: See TracChangeset
for help on using the changeset viewer.