Changeset 17097 for stable/HeuristicLab.Encodings.LinearLinkageEncoding
- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 52 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/Creators/ExactGroupsLinearLinkageCreator.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. … … 26 26 using HeuristicLab.Data; 27 27 using HeuristicLab.Parameters; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 29 29 using HeuristicLab.Random; 30 30 31 31 namespace HeuristicLab.Encodings.LinearLinkageEncoding { 32 32 [Item("Exactgroups Linear Linkage Creator", "Creates a random linear linkage LLE encoded solution with a given number of equal-sized groups.")] 33 [Storable Class]33 [StorableType("ACF7F729-9436-4418-86C4-45BF69F91803")] 34 34 public sealed class ExactGroupsLinearLinkageCreator : LinearLinkageCreator { 35 35 … … 44 44 45 45 [StorableConstructor] 46 private ExactGroupsLinearLinkageCreator( bool deserializing) : base(deserializing) { }46 private ExactGroupsLinearLinkageCreator(StorableConstructorFlag _) : base(_) { } 47 47 private ExactGroupsLinearLinkageCreator(ExactGroupsLinearLinkageCreator original, Cloner cloner) : base(original, cloner) { } 48 48 -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/Creators/MaxGroupSizeLinearLinkageCreator.cs
r14479 r17097 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 1 using System.Linq; 4 2 using HeuristicLab.Common; 5 3 using HeuristicLab.Core; 6 4 using HeuristicLab.Data; 7 5 using HeuristicLab.Parameters; 8 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;6 using HEAL.Attic; 9 7 10 8 namespace HeuristicLab.Encodings.LinearLinkageEncoding.Creators { 11 9 [Item("Max Group-size Linear Linkage Creator", "Creates a random linear linkage LLE encoded solution with a given maximum number of items per group.")] 12 [Storable Class]10 [StorableType("5C9DEA79-60CC-44A5-B70E-FC11A588C307")] 13 11 public class MaxGroupSizeLinearLinkageCreator: LinearLinkageCreator { 14 12 … … 23 21 24 22 [StorableConstructor] 25 protected MaxGroupSizeLinearLinkageCreator( bool deserializing) : base(deserializing) { }23 protected MaxGroupSizeLinearLinkageCreator(StorableConstructorFlag _) : base(_) { } 26 24 protected MaxGroupSizeLinearLinkageCreator(MaxGroupSizeLinearLinkageCreator original, Cloner cloner) : base(original, cloner) { } 27 25 -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/Creators/MaxGroupsLinearLinkageCreator.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. … … 26 26 using HeuristicLab.Data; 27 27 using HeuristicLab.Parameters; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 29 29 30 30 namespace HeuristicLab.Encodings.LinearLinkageEncoding { 31 31 [Item("Maxgroups Linear Linkage Creator", "Creates a random linear linkage LLE encoded solution with a given maximum number of groups.")] 32 [Storable Class]32 [StorableType("68BA2FF2-2493-404C-B044-D50AAC401CF1")] 33 33 public sealed class MaxGroupsLinearLinkageCreator : LinearLinkageCreator { 34 34 … … 43 43 44 44 [StorableConstructor] 45 private MaxGroupsLinearLinkageCreator( bool deserializing) : base(deserializing) { }45 private MaxGroupsLinearLinkageCreator(StorableConstructorFlag _) : base(_) { } 46 46 private MaxGroupsLinearLinkageCreator(MaxGroupsLinearLinkageCreator original, Cloner cloner) : base(original, cloner) { } 47 47 -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/Creators/RandomLinearLinkageCreator.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.Common; 25 25 using HeuristicLab.Core; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Attic; 27 27 28 28 namespace HeuristicLab.Encodings.LinearLinkageEncoding { 29 29 [Item("Random Linear Linkage Creator", "Creates a random linear linkage LLE encoded solution (similar to MaxGroups set to N).")] 30 [Storable Class]30 [StorableType("A2B2881B-BFB6-4902-BE59-DBF26E27B498")] 31 31 public sealed class RandomLinearLinkageCreator : LinearLinkageCreator { 32 32 33 33 [StorableConstructor] 34 private RandomLinearLinkageCreator( bool deserializing) : base(deserializing) { }34 private RandomLinearLinkageCreator(StorableConstructorFlag _) : base(_) { } 35 35 private RandomLinearLinkageCreator(RandomLinearLinkageCreator original, Cloner cloner) : base(original, cloner) { } 36 36 public RandomLinearLinkageCreator() { } -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/Crossovers/GreedyPartitionCrossover.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.Common; 26 26 using HeuristicLab.Core; 27 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;27 using HEAL.Attic; 28 28 using HeuristicLab.Random; 29 29 30 30 namespace HeuristicLab.Encodings.LinearLinkageEncoding { 31 31 [Item("Greedy Partition Crossover", "The Greedy Partition Crossover (GPX) is implemented as described in Ülker, Ö., Özcan, E., Korkmaz, E. E. 2007. Linear linkage encoding in grouping problems: applications on graph coloring and timetabling. In Practice and Theory of Automated Timetabling VI, pp. 347-363. Springer Berlin Heidelberg.")] 32 [Storable Class]32 [StorableType("C0CDC693-4513-404A-9CE9-598C6DC2E319")] 33 33 public sealed class GreedyPartitionCrossover : LinearLinkageCrossover { 34 34 35 35 [StorableConstructor] 36 private GreedyPartitionCrossover( bool deserializing) : base(deserializing) { }36 private GreedyPartitionCrossover(StorableConstructorFlag _) : base(_) { } 37 37 private GreedyPartitionCrossover(GreedyPartitionCrossover original, Cloner cloner) : base(original, cloner) { } 38 38 public GreedyPartitionCrossover() { } -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/Crossovers/GroupCrossover.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. … … 21 21 22 22 using System; 23 using System.Collections.Generic;24 23 using HeuristicLab.Common; 25 24 using HeuristicLab.Core; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Attic; 27 26 28 27 namespace HeuristicLab.Encodings.LinearLinkageEncoding { 29 28 [Item("Group Crossover", "The Group Crossover is implemented as described in Korkmaz, E.E. 2010. Multi-objective Genetic Algorithms for grouping problems. Applied Intelligence 33(2), pp. 179-192.")] 30 [Storable Class]29 [StorableType("E3B2FBDD-C923-4FE2-85C8-B2202EEF367F")] 31 30 public sealed class GroupCrossover : LinearLinkageCrossover { 32 31 33 32 [StorableConstructor] 34 private GroupCrossover( bool deserializing) : base(deserializing) { }33 private GroupCrossover(StorableConstructorFlag _) : base(_) { } 35 34 private GroupCrossover(GroupCrossover original, Cloner cloner) : base(original, cloner) { } 36 35 public GroupCrossover() { } -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/Crossovers/LowestIndexFirstCrossover.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.Common; 25 25 using HeuristicLab.Core; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Attic; 27 27 28 28 namespace HeuristicLab.Encodings.LinearLinkageEncoding { 29 29 [Item("Lowest Index First Crossover", "The Lowest Index First Crossover (LIFX) is implemented as described in Ülker, Ö., Özcan, E., Korkmaz, E. E. 2007. Linear linkage encoding in grouping problems: applications on graph coloring and timetabling. In Practice and Theory of Automated Timetabling VI, pp. 347-363. Springer Berlin Heidelberg.")] 30 [Storable Class]30 [StorableType("1DFB1827-AFE6-4210-A542-F9EA112FF039")] 31 31 public sealed class LowestIndexFirstCrossover : LinearLinkageCrossover { 32 32 33 33 [StorableConstructor] 34 private LowestIndexFirstCrossover( bool deserializing) : base(deserializing) { }34 private LowestIndexFirstCrossover(StorableConstructorFlag _) : base(_) { } 35 35 private LowestIndexFirstCrossover(LowestIndexFirstCrossover original, Cloner cloner) : base(original, cloner) { } 36 36 public LowestIndexFirstCrossover() { } -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/Crossovers/LowestIndexMaxCrossover.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.Common; 26 26 using HeuristicLab.Core; 27 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;27 using HEAL.Attic; 28 28 using HeuristicLab.Random; 29 29 30 30 namespace HeuristicLab.Encodings.LinearLinkageEncoding { 31 31 [Item("Lowest Index Max Crossover", "The Lowest Index Max Crossover (LIMX) is implemented as described in Ülker, Ö., Özcan, E., Korkmaz, E. E. 2007. Linear linkage encoding in grouping problems: applications on graph coloring and timetabling. In Practice and Theory of Automated Timetabling VI, pp. 347-363. Springer Berlin Heidelberg.")] 32 [Storable Class]32 [StorableType("CDD94469-9B80-4FBB-AC40-DADE1A9462F1")] 33 33 public sealed class LowestIndexMaxCrossover : LinearLinkageCrossover { 34 34 35 35 [StorableConstructor] 36 private LowestIndexMaxCrossover( bool deserializing) : base(deserializing) { }36 private LowestIndexMaxCrossover(StorableConstructorFlag _) : base(_) { } 37 37 private LowestIndexMaxCrossover(LowestIndexMaxCrossover original, Cloner cloner) : base(original, cloner) { } 38 38 public LowestIndexMaxCrossover() { } -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/Crossovers/MultiLLECrossover.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 System.Collections.Generic; 24 24 using System.Linq; 25 using System.Reflection;26 25 using HeuristicLab.Collections; 27 26 using HeuristicLab.Common; … … 30 29 using HeuristicLab.Optimization; 31 30 using HeuristicLab.Parameters; 32 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;31 using HEAL.Attic; 33 32 using HeuristicLab.PluginInfrastructure; 34 33 35 34 namespace HeuristicLab.Encodings.LinearLinkageEncoding { 36 35 [Item("Multi LLE Crossover", "Randomly selects and applies one of its crossovers every time it is called.")] 37 [Storable Class]36 [StorableType("276A73EA-3642-4B8F-9CD4-74C1B2772728")] 38 37 public class MultiLinearLinkageCrossover : StochasticMultiBranch<ILinearLinkageCrossover>, ILinearLinkageCrossover, IStochasticOperator { 39 38 public override bool CanChangeName { … … 53 52 54 53 [StorableConstructor] 55 protected MultiLinearLinkageCrossover( bool deserializing) : base(deserializing) { }54 protected MultiLinearLinkageCrossover(StorableConstructorFlag _) : base(_) { } 56 55 protected MultiLinearLinkageCrossover(MultiLinearLinkageCrossover original, Cloner cloner) : base(original, cloner) { } 57 56 public MultiLinearLinkageCrossover() -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/Crossovers/SinglePointCrossover.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.LinearLinkageEncoding { 28 28 [Item("Single Point Crossover", "The single point crossover concatenates two linkage strings at a randomly chosen point.")] 29 [Storable Class]29 [StorableType("1F1A83F4-659C-4A88-9A0C-4507257A3741")] 30 30 public sealed class SinglePointCrossover : LinearLinkageCrossover { 31 31 32 32 [StorableConstructor] 33 private SinglePointCrossover( bool deserializing) : base(deserializing) { }33 private SinglePointCrossover(StorableConstructorFlag _) : base(_) { } 34 34 private SinglePointCrossover(SinglePointCrossover original, Cloner cloner) : base(original, cloner) { } 35 35 public SinglePointCrossover() { } -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/HeuristicLab.Encodings.LinearLinkageEncoding-3.4.csproj
r15217 r17097 10 10 <RootNamespace>HeuristicLab.Encodings.LinearLinkageEncoding</RootNamespace> 11 11 <AssemblyName>HeuristicLab.Encodings.LinearLinkageEncoding-3.4</AssemblyName> 12 <TargetFrameworkVersion>v4. 5</TargetFrameworkVersion>12 <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion> 13 13 <FileAlignment>512</FileAlignment> 14 14 </PropertyGroup> … … 145 145 </ItemGroup> 146 146 <ItemGroup> 147 <Reference Include="Google.Protobuf, Version=3.6.1.0, Culture=neutral, PublicKeyToken=a7d26565bac4d604, processorArchitecture=MSIL"> 148 <HintPath>..\..\packages\Google.Protobuf.3.6.1\lib\net45\Google.Protobuf.dll</HintPath> 149 </Reference> 150 <Reference Include="HEAL.Attic, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 151 <HintPath>..\..\packages\HEAL.Attic.1.0.0-pre02\lib\net461\HEAL.Attic.dll</HintPath> 152 </Reference> 147 153 <Reference Include="System" /> 148 154 <Reference Include="System.Core" /> 149 155 <Reference Include="System.Drawing" /> 156 <Reference Include="System.Drawing.Common, Version=4.0.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL"> 157 <HintPath>..\..\packages\System.Drawing.Common.4.5.1\lib\net461\System.Drawing.Common.dll</HintPath> 158 </Reference> 150 159 <Reference Include="System.Xml.Linq" /> 151 160 <Reference Include="System.Data.DataSetExtensions" /> … … 197 206 <Compile Include="SimilarityCalculators\HammingSimilarityCalculator.cs" /> 198 207 <None Include="HeuristicLab.snk" /> 208 <None Include="packages.config" /> 199 209 <None Include="Plugin.cs.frame" /> 200 210 <Compile Include="Crossovers\LowestIndexFirstCrossover.cs" /> -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/Interfaces/ILinearLinkageCreator.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.Data; 24 24 using HeuristicLab.Optimization; 25 using HEAL.Attic; 25 26 26 27 namespace HeuristicLab.Encodings.LinearLinkageEncoding { 28 [StorableType("4fa6243e-eb78-45bf-a598-b706084e6473")] 27 29 public interface ILinearLinkageCreator : ISolutionCreator, ILinearLinkageOperator { 28 30 IValueLookupParameter<IntValue> LengthParameter { get; } -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/Interfaces/ILinearLinkageCrossover.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.Core; 23 23 using HeuristicLab.Optimization; 24 using HEAL.Attic; 24 25 25 26 namespace HeuristicLab.Encodings.LinearLinkageEncoding { 27 [StorableType("66ba6974-d27b-4c42-b9bd-b91a764d8f15")] 26 28 public interface ILinearLinkageCrossover : ICrossover, ILinearLinkageOperator { 27 29 ILookupParameter<LinearLinkage> ChildParameter { get; } -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/Interfaces/ILinearLinkageEMSSMoveOperator.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. … … 21 21 22 22 using HeuristicLab.Core; 23 using HEAL.Attic; 23 24 24 25 namespace HeuristicLab.Encodings.LinearLinkageEncoding { 26 [StorableType("07884b7a-bc68-4e6b-984e-a4c618f343fd")] 25 27 public interface ILinearLinkageEMSSMoveOperator : ILinearLinkageMoveOperator { 26 28 ILookupParameter<EMSSMove> EMSSMoveParameter { get; } -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/Interfaces/ILinearLinkageManipulator.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.Core; 23 23 using HeuristicLab.Optimization; 24 using HEAL.Attic; 24 25 25 26 namespace HeuristicLab.Encodings.LinearLinkageEncoding { 27 [StorableType("2d51279f-e88d-43a2-b743-3cceb48b6ced")] 26 28 public interface ILinearLinkageManipulator : IManipulator, ILinearLinkageOperator { 27 29 ILookupParameter<LinearLinkage> LLEParameter { get; } -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/Interfaces/ILinearLinkageMoveOperator.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.Core; 23 23 using HeuristicLab.Optimization; 24 using HEAL.Attic; 24 25 25 26 namespace HeuristicLab.Encodings.LinearLinkageEncoding { 27 [StorableType("15fa1dce-2c0d-4d42-a67f-68eb25904b66")] 26 28 /// <summary> 27 29 /// Move operators can be extended by deriving a new interface from this interface -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/Interfaces/ILinearLinkageOperator.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. … … 21 21 22 22 using HeuristicLab.Core; 23 using HEAL.Attic; 23 24 24 25 namespace HeuristicLab.Encodings.LinearLinkageEncoding { 26 [StorableType("80ff19b9-2de7-4d4f-ba99-db7d716b4ce7")] 25 27 public interface ILinearLinkageOperator : IOperator { 26 28 } -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/Interfaces/ILinearLinkageShakingOperator.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. … … 21 21 22 22 using HeuristicLab.Core; 23 using HEAL.Attic; 23 24 24 25 namespace HeuristicLab.Encodings.LinearLinkageEncoding { 26 [StorableType("81c7ae91-53b4-49df-bb63-ced3ba8b9e40")] 25 27 public interface ILinearLinkageShakingOperator : ILinearLinkageOperator { 26 28 ILookupParameter<LinearLinkage> LLEParameter { get; } -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/Interfaces/ILinearLinkageSwap2MoveOperator.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. … … 21 21 22 22 using HeuristicLab.Core; 23 using HEAL.Attic; 23 24 24 25 namespace HeuristicLab.Encodings.LinearLinkageEncoding { 26 [StorableType("92c361ee-2d07-4362-9ce5-d31fc205a112")] 25 27 public interface ILinearLinkageSwap2MoveOperator : ILinearLinkageMoveOperator { 26 28 ILookupParameter<Swap2Move> Swap2MoveParameter { get; } -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/LinearLinkage.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. … … 26 26 using HeuristicLab.Core; 27 27 using HeuristicLab.Data; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 29 29 30 30 namespace HeuristicLab.Encodings.LinearLinkageEncoding { 31 31 [Item("LinearLinkage", "Represents an LLE grouping of items.")] 32 [Storable Class]32 [StorableType("91492281-3335-4F5A-82BA-BA76142DAD2D")] 33 33 public sealed class LinearLinkage : IntArray { 34 34 35 35 [StorableConstructor] 36 private LinearLinkage( bool deserializing) : base(deserializing) { }36 private LinearLinkage(StorableConstructorFlag _) : base(_) { } 37 37 private LinearLinkage(LinearLinkage original, Cloner cloner) : base(original, cloner) { } 38 38 public LinearLinkage() { } -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/LinearLinkageCreator.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. … … 26 26 using HeuristicLab.Optimization; 27 27 using HeuristicLab.Parameters; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 29 29 30 30 namespace HeuristicLab.Encodings.LinearLinkageEncoding { 31 31 [Item("Linear Linkage Creator", "Base class for linear linkage creators.")] 32 [Storable Class]32 [StorableType("A3F7BDD5-B608-4C74-87C1-6D70F8D90B40")] 33 33 public abstract class LinearLinkageCreator : InstrumentedOperator, ILinearLinkageCreator, IStochasticOperator { 34 34 … … 46 46 47 47 [StorableConstructor] 48 protected LinearLinkageCreator( bool deserializing) : base(deserializing) { }48 protected LinearLinkageCreator(StorableConstructorFlag _) : base(_) { } 49 49 protected LinearLinkageCreator(LinearLinkageCreator original, Cloner cloner) : base(original, cloner) { } 50 50 protected LinearLinkageCreator() { -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/LinearLinkageCrossover.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. … … 26 26 using HeuristicLab.Optimization; 27 27 using HeuristicLab.Parameters; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 29 29 30 30 namespace HeuristicLab.Encodings.LinearLinkageEncoding { 31 31 [Item("Linear Linkage Crossover", "Base class for linear linkage crossovers.")] 32 [Storable Class]32 [StorableType("AB45F937-ECD4-4658-BC9E-793EE0453A0C")] 33 33 public abstract class LinearLinkageCrossover : InstrumentedOperator, ILinearLinkageCrossover, IStochasticOperator { 34 34 … … 46 46 47 47 [StorableConstructor] 48 protected LinearLinkageCrossover( bool deserializing) : base(deserializing) { }48 protected LinearLinkageCrossover(StorableConstructorFlag _) : base(_) { } 49 49 protected LinearLinkageCrossover(LinearLinkageCrossover original, Cloner cloner) : base(original, cloner) { } 50 50 protected LinearLinkageCrossover() { -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/LinearLinkageEncoding.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. … … 28 28 using HeuristicLab.Optimization; 29 29 using HeuristicLab.Parameters; 30 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;30 using HEAL.Attic; 31 31 using HeuristicLab.PluginInfrastructure; 32 32 33 33 namespace HeuristicLab.Encodings.LinearLinkageEncoding { 34 34 [Item("Linear Linkage Encoding", "Describes a linear linkage (LLE) encoding.")] 35 [Storable Class]35 [StorableType("7AE11F39-E6BD-4FC7-8112-0A5EDCBFBDB6")] 36 36 public sealed class LinearLinkageEncoding : Encoding<ILinearLinkageCreator> { 37 37 #region encoding parameters … … 59 59 60 60 [StorableConstructor] 61 private LinearLinkageEncoding( bool deserializing) : base(deserializing) { }61 private LinearLinkageEncoding(StorableConstructorFlag _) : base(_) { } 62 62 [StorableHook(HookType.AfterDeserialization)] 63 63 private void AfterDeserialization() { -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/LinearLinkageEqualityComparer.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 System.Collections.Generic; 24 24 using HeuristicLab.PluginInfrastructure; 25 using HEAL.Attic; 25 26 26 27 namespace HeuristicLab.Encodings.LinearLinkageEncoding { 27 28 [NonDiscoverableType] 29 [StorableType("8b1e0151-8882-4338-a98a-f3a03bcda6cf")] 28 30 public class LinearLinkageEqualityComparer : EqualityComparer<LinearLinkage> { 29 31 public override bool Equals(LinearLinkage x, LinearLinkage y) { -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/LinearLinkageManipulator.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.LinearLinkageEncoding { 30 30 [Item("Linear Linkage Manipulator", "Base class for linear linkage manipulators.")] 31 [Storable Class]31 [StorableType("88C99692-985F-4AB6-8E4F-1416E9166959")] 32 32 public abstract class LinearLinkageManipulator : InstrumentedOperator, ILinearLinkageManipulator, IStochasticOperator { 33 33 public ILookupParameter<IRandom> RandomParameter { … … 40 40 41 41 [StorableConstructor] 42 protected LinearLinkageManipulator( bool deserializing) : base(deserializing) { }42 protected LinearLinkageManipulator(StorableConstructorFlag _) : base(_) { } 43 43 protected LinearLinkageManipulator(LinearLinkageManipulator original, Cloner cloner) : base(original, cloner) { } 44 44 protected LinearLinkageManipulator() { -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/Manipulators/GraftManipulator.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.Common; 25 25 using HeuristicLab.Core; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Attic; 27 27 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 [Storable Class]30 [StorableType("B4806B37-B641-4750-B41F-FF5614156038")] 31 31 public sealed class GraftManipulator : LinearLinkageManipulator { 32 32 33 33 [StorableConstructor] 34 private GraftManipulator( bool deserializing) : base(deserializing) { }34 private GraftManipulator(StorableConstructorFlag _) : base(_) { } 35 35 private GraftManipulator(GraftManipulator original, Cloner cloner) : base(original, cloner) { } 36 36 public GraftManipulator() { } -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/Manipulators/MergeGroupManipulator.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.Parameters; 27 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;27 using HEAL.Attic; 28 28 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 [Storable Class]31 [StorableType("FE35BB56-D2B9-4309-ABF4-8C366D8596BC")] 32 32 public sealed class MergeGroupManipulator : LinearLinkageManipulator { 33 33 … … 37 37 38 38 [StorableConstructor] 39 private MergeGroupManipulator( bool deserializing) : base(deserializing) { }39 private MergeGroupManipulator(StorableConstructorFlag _) : base(_) { } 40 40 private MergeGroupManipulator(MergeGroupManipulator original, Cloner cloner) : base(original, cloner) { } 41 41 public MergeGroupManipulator() { -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/Manipulators/MoveItemManipulator.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. … … 26 26 using HeuristicLab.Data; 27 27 using HeuristicLab.Parameters; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 29 29 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 [Storable Class]32 [StorableType("26B371F4-8E37-406A-AC5A-3E7734087890")] 33 33 public sealed class MoveItemManipulator : LinearLinkageManipulator { 34 34 … … 38 38 39 39 [StorableConstructor] 40 private MoveItemManipulator( bool deserializing) : base(deserializing) { }40 private MoveItemManipulator(StorableConstructorFlag _) : base(_) { } 41 41 private MoveItemManipulator(MoveItemManipulator original, Cloner cloner) : base(original, cloner) { } 42 42 public MoveItemManipulator() { -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/Manipulators/MultiLLEManipulator.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 System.Collections.Generic; 24 24 using System.Linq; 25 using System.Reflection;26 25 using HeuristicLab.Collections; 27 26 using HeuristicLab.Common; … … 30 29 using HeuristicLab.Optimization; 31 30 using HeuristicLab.Parameters; 32 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;31 using HEAL.Attic; 33 32 using HeuristicLab.PluginInfrastructure; 34 33 35 34 namespace HeuristicLab.Encodings.LinearLinkageEncoding { 36 35 [Item("Multi LLE Manipulator", "Randomly selects and applies one of its manipulators every time it is called.")] 37 [Storable Class]36 [StorableType("7D22C9F6-BD21-4A21-BF8E-5F176D2260E1")] 38 37 public class MultiLinearLinkageManipulator : StochasticMultiBranch<ILinearLinkageManipulator>, ILinearLinkageManipulator, IStochasticOperator { 39 38 public override bool CanChangeName { … … 49 48 50 49 [StorableConstructor] 51 protected MultiLinearLinkageManipulator( bool deserializing) : base(deserializing) { }50 protected MultiLinearLinkageManipulator(StorableConstructorFlag _) : base(_) { } 52 51 protected MultiLinearLinkageManipulator(MultiLinearLinkageManipulator original, Cloner cloner) : base(original, cloner) { } 53 52 public MultiLinearLinkageManipulator() -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/Manipulators/SplitGroupManipulator.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. … … 27 27 using HeuristicLab.Data; 28 28 using HeuristicLab.Parameters; 29 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;29 using HEAL.Attic; 30 30 using HeuristicLab.Random; 31 31 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 [Storable Class]34 [StorableType("789781B8-0047-4880-ACAF-077A934AD320")] 35 35 public sealed class SplitGroupManipulator : LinearLinkageManipulator { 36 36 … … 40 40 41 41 [StorableConstructor] 42 private SplitGroupManipulator( bool deserializing) : base(deserializing) { }42 private SplitGroupManipulator(StorableConstructorFlag _) : base(_) { } 43 43 private SplitGroupManipulator(SplitGroupManipulator original, Cloner cloner) : base(original, cloner) { } 44 44 public SplitGroupManipulator() { -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/Manipulators/SwapItemManipulator.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.Parameters; 27 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;27 using HEAL.Attic; 28 28 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 [Storable Class]31 [StorableType("21F18233-0752-40A2-8B9A-6E6A9E2CE456")] 32 32 public sealed class SwapItemManipulator : LinearLinkageManipulator { 33 33 … … 37 37 38 38 [StorableConstructor] 39 private SwapItemManipulator( bool deserializing) : base(deserializing) { }39 private SwapItemManipulator(StorableConstructorFlag _) : base(_) { } 40 40 private SwapItemManipulator(SwapItemManipulator original, Cloner cloner) : base(original, cloner) { } 41 41 public SwapItemManipulator() { -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/Moves/EMSS/EMSSMove.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.LinearLinkageEncoding { 27 27 [Item("EMSSMove", "Base class for shift, split, merge, and extract moves.")] 28 [Storable Class]28 [StorableType("CE20CA9A-A191-4DA5-9F42-DAE9B79640E1")] 29 29 public abstract class EMSSMove : Item { 30 30 [Storable] … … 33 33 34 34 [StorableConstructor] 35 protected EMSSMove( bool deserializing) : base(deserializing) { }35 protected EMSSMove(StorableConstructorFlag _) : base(_) { } 36 36 protected EMSSMove(EMSSMove original, Cloner cloner) 37 37 : base(original, cloner) { -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/Moves/EMSS/EMSSMoveGenerator.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.LinearLinkageEncoding { 30 30 [Item("EMSSMoveGenerator", "Base class for all EMSS move generators (extract, merge, shift, and split).")] 31 [Storable Class]31 [StorableType("471A0A7B-30DD-4B29-97EE-9B3F7FAED582")] 32 32 public abstract class EMSSMoveGenerator : SingleSuccessorOperator, ILinearLinkageEMSSMoveOperator, IMoveGenerator { 33 33 public override bool CanChangeName { … … 42 42 43 43 [StorableConstructor] 44 protected EMSSMoveGenerator( bool deserializing) : base(deserializing) { }44 protected EMSSMoveGenerator(StorableConstructorFlag _) : base(_) { } 45 45 protected EMSSMoveGenerator(EMSSMoveGenerator original, Cloner cloner) : base(original, cloner) { } 46 46 public EMSSMoveGenerator() -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/Moves/EMSS/EMSSMoveMaker.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. … … 26 26 using HeuristicLab.Optimization; 27 27 using HeuristicLab.Parameters; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 29 29 30 30 namespace HeuristicLab.Encodings.LinearLinkageEncoding { 31 31 [Item("EMSSMoveMaker", "Applies an EMSS move to the lle grouping (extract, merge, shift, and split.")] 32 [Storable Class]32 [StorableType("B252F8AE-AEEA-4A21-8882-04739D4D2202")] 33 33 public class EMSSMoveMaker : SingleSuccessorOperator, ILinearLinkageEMSSMoveOperator, IMoveMaker, ISingleObjectiveOperator { 34 34 public override bool CanChangeName { … … 49 49 50 50 [StorableConstructor] 51 protected EMSSMoveMaker( bool deserializing) : base(deserializing) { }51 protected EMSSMoveMaker(StorableConstructorFlag _) : base(_) { } 52 52 protected EMSSMoveMaker(EMSSMoveMaker original, Cloner cloner) : base(original, cloner) { } 53 53 public EMSSMoveMaker() -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/Moves/EMSS/ExhaustiveEMSSMoveGenerator.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. … … 26 26 using HeuristicLab.Core; 27 27 using HeuristicLab.Optimization; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 29 29 30 30 namespace HeuristicLab.Encodings.LinearLinkageEncoding { 31 31 [Item("ExhaustiveEMSSMoveGenerator", "Generates all possible extract, merge, shift, and split (EMSS) moves from a given LLE solution.")] 32 [Storable Class]32 [StorableType("E5E81516-ADD2-474D-A93F-00580D485F07")] 33 33 public class ExhaustiveEMSSMoveGenerator : EMSSMoveGenerator, IExhaustiveMoveGenerator { 34 34 [StorableConstructor] 35 protected ExhaustiveEMSSMoveGenerator( bool deserializing) : base(deserializing) { }35 protected ExhaustiveEMSSMoveGenerator(StorableConstructorFlag _) : base(_) { } 36 36 protected ExhaustiveEMSSMoveGenerator(ExhaustiveEMSSMoveGenerator original, Cloner cloner) : base(original, cloner) { } 37 37 public ExhaustiveEMSSMoveGenerator() : base() { } -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/Moves/EMSS/ExtractMove.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.LinearLinkageEncoding { 28 28 [Item("Extract Move", "Extracts an item into a group of its own.")] 29 [Storable Class]29 [StorableType("D42CB819-F307-4081-9227-7F6786E6853B")] 30 30 public sealed class ExtractMove : EMSSMove { 31 31 [Storable] … … 41 41 42 42 [StorableConstructor] 43 private ExtractMove( bool deserializing) : base(deserializing) { }43 private ExtractMove(StorableConstructorFlag _) : base(_) { } 44 44 private ExtractMove(ExtractMove original, Cloner cloner) 45 45 : base(original, cloner) { -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/Moves/EMSS/MergeMove.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.LinearLinkageEncoding { 28 28 [Item("Merge Move", "Merges two groups together.")] 29 [Storable Class]29 [StorableType("4AC9ADD2-3825-4CFE-8074-6F3CA7251700")] 30 30 public sealed class MergeMove : EMSSMove { 31 31 [Storable] … … 34 34 35 35 [StorableConstructor] 36 private MergeMove( bool deserializing) : base(deserializing) { }36 private MergeMove(StorableConstructorFlag _) : base(_) { } 37 37 private MergeMove(MergeMove original, Cloner cloner) 38 38 : base(original, cloner) { -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/Moves/EMSS/ShiftMove.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.LinearLinkageEncoding { 28 28 [Item("Shift Move", "Shifts an item from one group to another.")] 29 [Storable Class]29 [StorableType("577C4FAF-A02C-4896-8EEB-54360989A4B3")] 30 30 public sealed class ShiftMove : EMSSMove { 31 31 [Storable] … … 47 47 48 48 [StorableConstructor] 49 private ShiftMove( bool deserializing) : base(deserializing) { }49 private ShiftMove(StorableConstructorFlag _) : base(_) { } 50 50 private ShiftMove(ShiftMove original, Cloner cloner) 51 51 : base(original, cloner) { -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/Moves/EMSS/SplitMove.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.LinearLinkageEncoding { 28 28 [Item("Split Move", "Splits a group into two groups.")] 29 [Storable Class]29 [StorableType("98EB5FF6-A384-482B-B700-7EB012639E64")] 30 30 public sealed class SplitMove : EMSSMove { 31 31 [Storable] … … 33 33 34 34 [StorableConstructor] 35 private SplitMove( bool deserializing) : base(deserializing) { }35 private SplitMove(StorableConstructorFlag _) : base(_) { } 36 36 private SplitMove(SplitMove original, Cloner cloner) 37 37 : base(original, cloner) { -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/Moves/EMSS/StochasticEMSSMultiMoveGenerator.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. … … 27 27 using HeuristicLab.Optimization; 28 28 using HeuristicLab.Parameters; 29 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;29 using HEAL.Attic; 30 30 using HeuristicLab.Random; 31 31 32 32 namespace HeuristicLab.Encodings.LinearLinkageEncoding { 33 33 [Item("StochasticEMSSMultiMoveGenerator", "Randomly samples n from all possible EMSS moves (extract, merge, shift, and split) from a given lle grouping.")] 34 [Storable Class]34 [StorableType("AE38F823-B840-4AFB-A780-259CB6C95D23")] 35 35 public class StochasticEMSSMultiMoveGenerator : EMSSMoveGenerator, IMultiMoveGenerator, IStochasticOperator { 36 36 public ILookupParameter<IRandom> RandomParameter { … … 47 47 48 48 [StorableConstructor] 49 protected StochasticEMSSMultiMoveGenerator( bool deserializing) : base(deserializing) { }49 protected StochasticEMSSMultiMoveGenerator(StorableConstructorFlag _) : base(_) { } 50 50 protected StochasticEMSSMultiMoveGenerator(StochasticEMSSMultiMoveGenerator original, Cloner cloner) : base(original, cloner) { } 51 51 public StochasticEMSSMultiMoveGenerator() -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/Moves/EMSS/StochasticEMSSSingleMoveGenerator.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. … … 26 26 using HeuristicLab.Optimization; 27 27 using HeuristicLab.Parameters; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 29 29 using HeuristicLab.Random; 30 30 31 31 namespace HeuristicLab.Encodings.LinearLinkageEncoding { 32 32 [Item("StochasticEMSSSingleMoveGenerator", "Randomly samples a single from all possible EMSS moves (extract, merge, shift, and split) from a given lle grouping.")] 33 [Storable Class]33 [StorableType("345211F0-E998-4C0E-B466-C2FC24D278E4")] 34 34 public class StochasticEMSSSingleMoveGenerator : EMSSMoveGenerator, IStochasticOperator, ISingleMoveGenerator { 35 35 public ILookupParameter<IRandom> RandomParameter { … … 38 38 39 39 [StorableConstructor] 40 protected StochasticEMSSSingleMoveGenerator( bool deserializing) : base(deserializing) { }40 protected StochasticEMSSSingleMoveGenerator(StorableConstructorFlag _) : base(_) { } 41 41 protected StochasticEMSSSingleMoveGenerator(StochasticEMSSSingleMoveGenerator original, Cloner cloner) : base(original, cloner) { } 42 42 public StochasticEMSSSingleMoveGenerator() -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/Moves/Swap/ExhaustiveSwap2MoveGenerator.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. … … 26 26 using HeuristicLab.Core; 27 27 using HeuristicLab.Optimization; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 29 29 30 30 namespace HeuristicLab.Encodings.LinearLinkageEncoding { 31 31 [Item("ExhaustiveSwap2MoveGenerator", "Generates all possible swap-2 moves from a given lle grouping.")] 32 [Storable Class]32 [StorableType("1D050D36-3197-4931-9806-F8119A60E8B6")] 33 33 public class ExhaustiveSwap2MoveGenerator : Swap2MoveGenerator, IExhaustiveMoveGenerator { 34 34 [StorableConstructor] 35 protected ExhaustiveSwap2MoveGenerator( bool deserializing) : base(deserializing) { }35 protected ExhaustiveSwap2MoveGenerator(StorableConstructorFlag _) : base(_) { } 36 36 protected ExhaustiveSwap2MoveGenerator(ExhaustiveSwap2MoveGenerator original, Cloner cloner) : base(original, cloner) { } 37 37 public ExhaustiveSwap2MoveGenerator() : base() { } -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/Moves/Swap/StochasticSwap2MultiMoveGenerator.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.LinearLinkageEncoding { 30 30 [Item("StochasticSwap2MultiMoveGenerator", "Randomly samples n from all possible swap-2 moves from a given lle grouping.")] 31 [Storable Class]31 [StorableType("156E5EAE-D929-41CE-844E-7DECE09CB74B")] 32 32 public class StochasticSwap2MultiMoveGenerator : Swap2MoveGenerator, IMultiMoveGenerator, IStochasticOperator { 33 33 public ILookupParameter<IRandom> RandomParameter { … … 44 44 45 45 [StorableConstructor] 46 protected StochasticSwap2MultiMoveGenerator( bool deserializing) : base(deserializing) { }46 protected StochasticSwap2MultiMoveGenerator(StorableConstructorFlag _) : base(_) { } 47 47 protected StochasticSwap2MultiMoveGenerator(StochasticSwap2MultiMoveGenerator original, Cloner cloner) : base(original, cloner) { } 48 48 public StochasticSwap2MultiMoveGenerator() -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/Moves/Swap/StochasticSwap2SingleMoveGenerator.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. … … 26 26 using HeuristicLab.Optimization; 27 27 using HeuristicLab.Parameters; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 29 29 30 30 namespace HeuristicLab.Encodings.LinearLinkageEncoding { 31 31 [Item("StochasticSwap2SingleMoveGenerator", "Randomly samples a single from all possible swap-2 moves from a given lle grouping.")] 32 [Storable Class]32 [StorableType("381C1F6F-A61C-4886-A2A1-348445DF2C84")] 33 33 public class StochasticSwap2SingleMoveGenerator : Swap2MoveGenerator, IStochasticOperator, ISingleMoveGenerator { 34 34 public ILookupParameter<IRandom> RandomParameter { … … 37 37 38 38 [StorableConstructor] 39 protected StochasticSwap2SingleMoveGenerator( bool deserializing) : base(deserializing) { }39 protected StochasticSwap2SingleMoveGenerator(StorableConstructorFlag _) : base(_) { } 40 40 protected StochasticSwap2SingleMoveGenerator(StochasticSwap2SingleMoveGenerator original, Cloner cloner) : base(original, cloner) { } 41 41 public StochasticSwap2SingleMoveGenerator() -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/Moves/Swap/Swap2Move.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.LinearLinkageEncoding { 27 27 [Item("Swap2Move", "Item that describes a swap-2 move.")] 28 [Storable Class]28 [StorableType("AEB203A4-03AD-4F86-B200-B0FA8253BCFF")] 29 29 public class Swap2Move : Item { 30 30 [Storable] … … 36 36 37 37 [StorableConstructor] 38 protected Swap2Move( bool deserializing) : base(deserializing) { }38 protected Swap2Move(StorableConstructorFlag _) : base(_) { } 39 39 protected Swap2Move(Swap2Move original, Cloner cloner) : base(original, cloner) { } 40 40 public Swap2Move() : this(-1, -1, null) { } -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/Moves/Swap/Swap2MoveGenerator.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.LinearLinkageEncoding { 30 30 [Item("Swap2MoveGenerator", "Base class for all swap-2 move generators.")] 31 [Storable Class]31 [StorableType("E7319AAA-7D34-444A-9B63-8A5CF1F010B5")] 32 32 public abstract class Swap2MoveGenerator : SingleSuccessorOperator, ILinearLinkageSwap2MoveOperator, IMoveGenerator { 33 33 public override bool CanChangeName { … … 42 42 43 43 [StorableConstructor] 44 protected Swap2MoveGenerator( bool deserializing) : base(deserializing) { }44 protected Swap2MoveGenerator(StorableConstructorFlag _) : base(_) { } 45 45 protected Swap2MoveGenerator(Swap2MoveGenerator original, Cloner cloner) : base(original, cloner) { } 46 46 public Swap2MoveGenerator() -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/Moves/Swap/Swap2MoveMaker.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. … … 28 28 using HeuristicLab.Optimization; 29 29 using HeuristicLab.Parameters; 30 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;30 using HEAL.Attic; 31 31 32 32 namespace HeuristicLab.Encodings.LinearLinkageEncoding { 33 33 [Item("Swap2MoveMaker", "Peforms a swap-2 move on a given grouping and updates the quality.")] 34 [Storable Class]34 [StorableType("2A1F7169-5DD5-4FB6-A25C-BBC4C06BB15A")] 35 35 public class Swap2MoveMaker : SingleSuccessorOperator, ILinearLinkageSwap2MoveOperator, IMoveMaker, ISingleObjectiveOperator { 36 36 public override bool CanChangeName { … … 51 51 52 52 [StorableConstructor] 53 protected Swap2MoveMaker( bool deserializing) : base(deserializing) { }53 protected Swap2MoveMaker(StorableConstructorFlag _) : base(_) { } 54 54 protected Swap2MoveMaker(Swap2MoveMaker original, Cloner cloner) : base(original, cloner) { } 55 55 public Swap2MoveMaker() -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/Plugin.cs.frame
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. -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/Properties/AssemblyInfo.cs.frame
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. -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/ShakingOperators/LLEShakingOperator.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. … … 28 28 using HeuristicLab.Optimization.Operators; 29 29 using HeuristicLab.Parameters; 30 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;30 using HEAL.Attic; 31 31 32 32 namespace HeuristicLab.Encodings.LinearLinkageEncoding { 33 33 [Item("LLE Shaking Operator", "A shaking operator for VNS which uses LLE manipulators to perform the shaking.")] 34 [Storable Class]34 [StorableType("D08F5FA0-BEAC-4AAE-A69A-7EFEC26513BA")] 35 35 public class LLEShakingOperator : ShakingOperator<ILinearLinkageManipulator>, IStochasticOperator, ILinearLinkageShakingOperator { 36 36 … … 48 48 49 49 [StorableConstructor] 50 protected LLEShakingOperator( bool deserializing) : base(deserializing) { }50 protected LLEShakingOperator(StorableConstructorFlag _) : base(_) { } 51 51 protected LLEShakingOperator(LLEShakingOperator original, Cloner cloner) : base(original, cloner) { } 52 52 public LLEShakingOperator() -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/SimilarityCalculators/HammingSimilarityCalculator.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.Core; 25 25 using HeuristicLab.Optimization.Operators; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Attic; 27 27 28 28 namespace HeuristicLab.Encodings.LinearLinkageEncoding { 29 29 [Item("Hamming Similarity Calculator for LinearLinkage", "Calculates the hamming similarity for two linear linkage encoded solutions.")] 30 [Storable Class]30 [StorableType("285EA71B-6045-4431-9B64-77331D23CE3C")] 31 31 public sealed class HammingSimilarityCalculator : SingleObjectiveSolutionSimilarityCalculator { 32 32 protected override bool IsCommutative { get { return true; } } 33 33 34 34 [StorableConstructor] 35 private HammingSimilarityCalculator( bool deserializing) : base(deserializing) { }35 private HammingSimilarityCalculator(StorableConstructorFlag _) : base(_) { } 36 36 private HammingSimilarityCalculator(HammingSimilarityCalculator original, Cloner cloner) : base(original, cloner) { } 37 37 public HammingSimilarityCalculator() : base() { } -
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/packages.config
r16565 r17097 2 2 <packages> 3 3 <package id="Google.Protobuf" version="3.6.1" targetFramework="net461" /> 4 <package id="HEAL.Attic" version="1.0.0-pre0 1" targetFramework="net461" />4 <package id="HEAL.Attic" version="1.0.0-pre02" targetFramework="net461" /> 5 5 <package id="System.Drawing.Common" version="4.5.1" targetFramework="net461" /> 6 6 </packages>
Note: See TracChangeset
for help on using the changeset viewer.