Changeset 13368 for branches/PersistenceOverhaul/HeuristicLab.Encodings.ScheduleEncoding/3.3/PermutationWithRepetition/Crossovers
- Timestamp:
- 11/24/15 17:08:13 (9 years ago)
- Location:
- branches/PersistenceOverhaul/HeuristicLab.Encodings.ScheduleEncoding/3.3/PermutationWithRepetition/Crossovers
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceOverhaul/HeuristicLab.Encodings.ScheduleEncoding/3.3/PermutationWithRepetition/Crossovers/PWRCrossover.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.PermutationWithRepetition { 27 27 [Item("PWRCrossover", "An operator which crosses two JSM representations.")] 28 [StorableClass ]28 [StorableClass("9CDEAC27-3AB6-413B-A0C6-C553E38D16D9")] 29 29 public abstract class PWRCrossover : ScheduleCrossover, IPWROperator { 30 30 -
branches/PersistenceOverhaul/HeuristicLab.Encodings.ScheduleEncoding/3.3/PermutationWithRepetition/Crossovers/PWRGOXCrossover.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) … … 29 29 namespace HeuristicLab.Encodings.ScheduleEncoding.PermutationWithRepetition { 30 30 [Item("PWRGeneralizationOrderCrossover", "Represents a crossover operation swapping sequences of the parents to generate offspring.")] 31 [StorableClass ]31 [StorableClass("FFEDD871-ACC4-4392-A8B7-517894662E2F")] 32 32 public class PWRGOXCrossover : PWRCrossover { 33 33 -
branches/PersistenceOverhaul/HeuristicLab.Encodings.ScheduleEncoding/3.3/PermutationWithRepetition/Crossovers/PWRPPXCrossover.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) … … 29 29 namespace HeuristicLab.Encodings.ScheduleEncoding.PermutationWithRepetition { 30 30 [Item("PWRPPXCrossover", "Represents a crossover operation swapping sequences of the parents to generate offspring.")] 31 [StorableClass ]31 [StorableClass("BBA0B8CA-866F-4FA3-8E45-9FBBD4297A4C")] 32 32 public class PWRPPXCrossover : PWRCrossover { 33 33
Note: See TracChangeset
for help on using the changeset viewer.