- Timestamp:
- 07/07/19 23:40:10 (6 years ago)
- Location:
- stable
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Encodings.ScheduleEncoding/3.3/PriorityRulesVector/Crossovers/PRVCrossover.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.PriorityRulesVector { 27 27 [Item("PRVCrossover", "An operator which crosses two PRV representations.")] 28 [Storable Class]28 [StorableType("D5AD4BED-029A-4424-8512-F2F7E10D748D")] 29 29 public abstract class PRVCrossover : ScheduleCrossover, IPRVOperator { 30 30 31 31 [StorableConstructor] 32 protected PRVCrossover( bool deserializing) : base(deserializing) { }32 protected PRVCrossover(StorableConstructorFlag _) : base(_) { } 33 33 protected PRVCrossover(PRVCrossover original, Cloner cloner) : base(original, cloner) { } 34 34 public PRVCrossover() -
stable/HeuristicLab.Encodings.ScheduleEncoding/3.3/PriorityRulesVector/Crossovers/PRVDiscreteCrossover.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. … … 23 23 using HeuristicLab.Core; 24 24 using HeuristicLab.Encodings.IntegerVectorEncoding; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Attic; 26 26 27 27 namespace HeuristicLab.Encodings.ScheduleEncoding.PriorityRulesVector { 28 28 [Item("PRVDiscreteCrossover", "Represents a crossover operation swapping sequences of the parents to generate offspring.")] 29 [Storable Class]29 [StorableType("79050109-0BDC-4EBE-A290-D32F99BB45D4")] 30 30 public class PRVDiscreteCrossover : PRVCrossover { 31 31 32 32 [StorableConstructor] 33 protected PRVDiscreteCrossover( bool deserializing) : base(deserializing) { }33 protected PRVDiscreteCrossover(StorableConstructorFlag _) : base(_) { } 34 34 protected PRVDiscreteCrossover(PRVDiscreteCrossover original, Cloner cloner) : base(original, cloner) { } 35 35 public PRVDiscreteCrossover() : base() { } -
stable/HeuristicLab.Encodings.ScheduleEncoding/3.3/PriorityRulesVector/Crossovers/PRVSinglePointCrossover.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. … … 23 23 using HeuristicLab.Core; 24 24 using HeuristicLab.Encodings.IntegerVectorEncoding; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Attic; 26 26 27 27 namespace HeuristicLab.Encodings.ScheduleEncoding.PriorityRulesVector { 28 28 [Item("PRVSinglePointCrossover", "Represents a crossover operation swapping sequences of the parents to generate offspring.")] 29 [Storable Class]29 [StorableType("7E148F4E-1993-44B5-B466-E1E441203498")] 30 30 public class PRVSinglePointCrossover : PRVCrossover { 31 31 32 32 [StorableConstructor] 33 protected PRVSinglePointCrossover( bool deserializing) : base(deserializing) { }33 protected PRVSinglePointCrossover(StorableConstructorFlag _) : base(_) { } 34 34 protected PRVSinglePointCrossover(PRVSinglePointCrossover original, Cloner cloner) : base(original, cloner) { } 35 35 public PRVSinglePointCrossover() : base() { } -
stable/HeuristicLab.Encodings.ScheduleEncoding/3.3/PriorityRulesVector/Manipulators/PRVManipulator.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. … … 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.PriorityRulesVector { 28 28 [Item("PRVManipulator", "An operator which manipulates a PRV representation.")] 29 [Storable Class]29 [StorableType("724A2141-E592-447E-9F51-5C69BD3A7D46")] 30 30 public abstract class PRVManipulator : ScheduleManipulator, IPRVOperator { 31 31 [StorableConstructor] 32 protected PRVManipulator( bool deserializing) : base(deserializing) { }32 protected PRVManipulator(StorableConstructorFlag _) : base(_) { } 33 33 protected PRVManipulator(PRVManipulator original, Cloner cloner) : base(original, cloner) { } 34 34 public PRVManipulator() -
stable/HeuristicLab.Encodings.ScheduleEncoding/3.3/PriorityRulesVector/Manipulators/PRVUniformOnePositionManipulator.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. … … 24 24 using HeuristicLab.Data; 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.PriorityRulesVector { 29 29 [Item("PRVUniformOnePositionManipulator", "Represents a manipulation operation inserting parts of the individual at another position.")] 30 [Storable Class]30 [StorableType("5C6A1D79-88DD-42D7-94C1-57C16BA44148")] 31 31 public class PRVUniformOnePositionManipulator : PRVManipulator { 32 32 33 33 [StorableConstructor] 34 protected PRVUniformOnePositionManipulator( bool deserializing) : base(deserializing) { }34 protected PRVUniformOnePositionManipulator(StorableConstructorFlag _) : base(_) { } 35 35 protected PRVUniformOnePositionManipulator(PRVUniformOnePositionManipulator original, Cloner cloner) : base(original, cloner) { } 36 36 public PRVUniformOnePositionManipulator() : base() { } -
stable/HeuristicLab.Encodings.ScheduleEncoding/3.3/PriorityRulesVector/PRVEncoding.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.Data; 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.PriorityRulesVector { 30 30 [Item("PriorityRulesVectorEncoding", "Represents an encoding for a Scheduling Problem.")] 31 [Storable Class]31 [StorableType("D42AC200-1F87-451E-A953-803EF33BE953")] 32 32 public class PRVEncoding : Item, IScheduleEncoding { 33 33 [Storable] … … 43 43 44 44 [StorableConstructor] 45 protected PRVEncoding( bool deserializing) : base(deserializing) { }45 protected PRVEncoding(StorableConstructorFlag _) : base(_) { } 46 46 protected PRVEncoding(PRVEncoding original, Cloner cloner) 47 47 : base(original, cloner) { -
stable/HeuristicLab.Encodings.ScheduleEncoding/3.3/PriorityRulesVector/PRVRandomCreator.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.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.PriorityRulesVector { 30 30 [Item("PriorityRulesRandomCreator", "Creator class used to create PRV encoding objects for scheduling problems.")] 31 [Storable Class]31 [StorableType("5FF2A11E-86F9-4A8B-8E1C-713D6801506C")] 32 32 public class PRVRandomCreator : ScheduleCreator, IStochasticOperator { 33 33 … … 46 46 47 47 [StorableConstructor] 48 protected PRVRandomCreator( bool deserializing) : base(deserializing) { }48 protected PRVRandomCreator(StorableConstructorFlag _) : base(_) { } 49 49 protected PRVRandomCreator(PRVRandomCreator original, Cloner cloner) 50 50 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.