Changeset 17097 for stable/HeuristicLab.Encodings.ScheduleEncoding/3.3/PriorityRulesVector/Crossovers
- Timestamp:
- 07/07/19 23:40:10 (6 years ago)
- Location:
- stable
- Files:
-
- 4 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() { }
Note: See TracChangeset
for help on using the changeset viewer.