Changeset 17097 for stable/HeuristicLab.Encodings.ScheduleEncoding/3.3/PermutationWithRepetition/Crossovers
- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Encodings.ScheduleEncoding/3.3/PermutationWithRepetition/Crossovers/PWRCrossover.cs
r15584 r17097 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() -
stable/HeuristicLab.Encodings.ScheduleEncoding/3.3/PermutationWithRepetition/Crossovers/PWRGOXCrossover.cs
r15584 r17097 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() { } -
stable/HeuristicLab.Encodings.ScheduleEncoding/3.3/PermutationWithRepetition/Crossovers/PWRPPXCrossover.cs
r15584 r17097 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() { }
Note: See TracChangeset
for help on using the changeset viewer.