Changeset 13368 for branches/PersistenceOverhaul/HeuristicLab.Encodings.ScheduleEncoding/3.3/PriorityRulesVector/Crossovers
- Timestamp:
- 11/24/15 17:08:13 (9 years ago)
- Location:
- branches/PersistenceOverhaul/HeuristicLab.Encodings.ScheduleEncoding/3.3/PriorityRulesVector/Crossovers
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceOverhaul/HeuristicLab.Encodings.ScheduleEncoding/3.3/PriorityRulesVector/Crossovers/PRVCrossover.cs
r12012 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 26 26 namespace HeuristicLab.Encodings.ScheduleEncoding.PriorityRulesVector { 27 27 [Item("PRVCrossover", "An operator which crosses two PRV representations.")] 28 [StorableClass ]28 [StorableClass("9BFFF528-51EE-496C-9D9A-A5D9AA3FC6D0")] 29 29 public abstract class PRVCrossover : ScheduleCrossover, IPRVOperator { 30 30 -
branches/PersistenceOverhaul/HeuristicLab.Encodings.ScheduleEncoding/3.3/PriorityRulesVector/Crossovers/PRVDiscreteCrossover.cs
r12012 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 27 27 namespace HeuristicLab.Encodings.ScheduleEncoding.PriorityRulesVector { 28 28 [Item("PRVDiscreteCrossover", "Represents a crossover operation swapping sequences of the parents to generate offspring.")] 29 [StorableClass ]29 [StorableClass("67735432-B5EB-4CF7-9203-069B369C1724")] 30 30 public class PRVDiscreteCrossover : PRVCrossover { 31 31 -
branches/PersistenceOverhaul/HeuristicLab.Encodings.ScheduleEncoding/3.3/PriorityRulesVector/Crossovers/PRVSinglePointCrossover.cs
r12012 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 27 27 namespace HeuristicLab.Encodings.ScheduleEncoding.PriorityRulesVector { 28 28 [Item("PRVSinglePointCrossover", "Represents a crossover operation swapping sequences of the parents to generate offspring.")] 29 [StorableClass ]29 [StorableClass("C33F90A1-CDF6-40D5-A059-82D1C86658B6")] 30 30 public class PRVSinglePointCrossover : PRVCrossover { 31 31
Note: See TracChangeset
for help on using the changeset viewer.