Changeset 13368 for branches/PersistenceOverhaul/HeuristicLab.Encodings.LinearLinkageEncoding/3.3/Manipulators
- Timestamp:
- 11/24/15 17:08:13 (9 years ago)
- Location:
- branches/PersistenceOverhaul/HeuristicLab.Encodings.LinearLinkageEncoding/3.3/Manipulators
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceOverhaul/HeuristicLab.Encodings.LinearLinkageEncoding/3.3/Manipulators/GraftManipulator.cs
r12396 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 28 28 namespace HeuristicLab.Encodings.LinearLinkageEncoding { 29 29 [Item("Graft Manipulator", "Performs graft mutation as described in Du, J., Korkmaz, E.E., Alhajj, R., and Barker, K. 2004. Novel Clustering Approach that employs Genetic Algorithm with New Representation Scheme and Multiple Objectives. Data Warehousing and Knowledge Discovery, pp. 219-228. Springer Berlin Heidelberg.")] 30 [StorableClass ]30 [StorableClass("07C160A2-4E08-40EC-BC95-5355AC1F18EE")] 31 31 public sealed class GraftManipulator : LinearLinkageManipulator { 32 32 -
branches/PersistenceOverhaul/HeuristicLab.Encodings.LinearLinkageEncoding/3.3/Manipulators/MergeGroupManipulator.cs
r12396 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.LinearLinkageEncoding { 30 30 [Item("Merge Group Manipulator", "Performs a maximum of N merge operations on the groups. An already merged group may be merged again.")] 31 [StorableClass ]31 [StorableClass("5070E24D-F3A2-4318-BCF1-B5FF93BE9C49")] 32 32 public sealed class MergeGroupManipulator : LinearLinkageManipulator { 33 33 -
branches/PersistenceOverhaul/HeuristicLab.Encodings.LinearLinkageEncoding/3.3/Manipulators/MoveItemManipulator.cs
r12396 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 30 30 namespace HeuristicLab.Encodings.LinearLinkageEncoding { 31 31 [Item("Move Item Manipulator", "Performs a maximum of N move operations between groups or to new groups. An already moved item may be moved again.")] 32 [StorableClass ]32 [StorableClass("D3152965-D6B9-4615-8492-6CB753431163")] 33 33 public sealed class MoveItemManipulator : LinearLinkageManipulator { 34 34 -
branches/PersistenceOverhaul/HeuristicLab.Encodings.LinearLinkageEncoding/3.3/Manipulators/MultiLLEManipulator.cs
r12743 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 35 35 namespace HeuristicLab.Encodings.LinearLinkageEncoding { 36 36 [Item("Multi LLE Manipulator", "Randomly selects and applies one of its manipulators every time it is called.")] 37 [StorableClass ]37 [StorableClass("78C4CAF4-AC9C-4FC7-9082-C2E16FB07C08")] 38 38 public class MultiLinearLinkageManipulator : StochasticMultiBranch<ILinearLinkageManipulator>, ILinearLinkageManipulator, IStochasticOperator { 39 39 public override bool CanChangeName { -
branches/PersistenceOverhaul/HeuristicLab.Encodings.LinearLinkageEncoding/3.3/Manipulators/SplitGroupManipulator.cs
r12396 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 32 32 namespace HeuristicLab.Encodings.LinearLinkageEncoding { 33 33 [Item("Split Group Manipulator", "Performs a maximum of N split operations on the groups. An already split group may be split again.")] 34 [StorableClass ]34 [StorableClass("66661F32-5835-4D46-867C-CD96079DC7E6")] 35 35 public sealed class SplitGroupManipulator : LinearLinkageManipulator { 36 36 -
branches/PersistenceOverhaul/HeuristicLab.Encodings.LinearLinkageEncoding/3.3/Manipulators/SwapItemManipulator.cs
r12396 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.LinearLinkageEncoding { 30 30 [Item("Swap Item Manipulator", "Performs N swaps operations of two items each. The same items may be swapped multiple times, at least two groups need to be present.")] 31 [StorableClass ]31 [StorableClass("C843A8EE-CCDD-4F03-84C9-E7E017BB78E7")] 32 32 public sealed class SwapItemManipulator : LinearLinkageManipulator { 33 33
Note: See TracChangeset
for help on using the changeset viewer.