Changeset 16723 for branches/2521_ProblemRefactoring/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm
- Timestamp:
- 03/28/19 16:54:20 (6 years ago)
- Location:
- branches/2521_ProblemRefactoring
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring
- Property svn:mergeinfo changed
-
branches/2521_ProblemRefactoring/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm-3.3.csproj
r11623 r16723 11 11 <RootNamespace>HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm</RootNamespace> 12 12 <AssemblyName>HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm-3.3</AssemblyName> 13 <TargetFrameworkVersion>v4. 5</TargetFrameworkVersion>13 <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion> 14 14 <TargetFrameworkProfile> 15 15 </TargetFrameworkProfile> … … 214 214 </BootstrapperPackage> 215 215 </ItemGroup> 216 <ItemGroup> 217 <Reference Include="HEAL.Attic, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 218 <SpecificVersion>False</SpecificVersion> 219 <HintPath>..\..\bin\HEAL.Attic.dll</HintPath> 220 <Private>False</Private> 221 </Reference> 222 </ItemGroup> 216 223 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> 217 224 <!-- To modify your build process, add your task inside one of the targets below and uncomment it. -
branches/2521_ProblemRefactoring/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/IslandOffspringSelectionGeneticAlgorithm.cs
r16692 r16723 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. … … 30 30 using HeuristicLab.Optimization.Operators; 31 31 using HeuristicLab.Parameters; 32 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;32 using HEAL.Attic; 33 33 using HeuristicLab.PluginInfrastructure; 34 34 using HeuristicLab.Random; … … 40 40 [Item("Island Offspring Selection Genetic Algorithm (Island-OSGA)", "An island offspring selection genetic algorithm.")] 41 41 [Creatable(CreatableAttribute.Categories.PopulationBasedAlgorithms, Priority = 130)] 42 [Storable Class]42 [StorableType("1CE20A3D-8DC7-4504-AEEB-95A0E40B9274")] 43 43 public sealed class IslandOffspringSelectionGeneticAlgorithm : HeuristicOptimizationEngineAlgorithm, IStorableContent { 44 44 public string Filename { get; set; } … … 268 268 269 269 [StorableConstructor] 270 private IslandOffspringSelectionGeneticAlgorithm( bool deserializing) : base(deserializing) { }270 private IslandOffspringSelectionGeneticAlgorithm(StorableConstructorFlag _) : base(_) { } 271 271 [StorableHook(HookType.AfterDeserialization)] 272 272 private void AfterDeserialization() { -
branches/2521_ProblemRefactoring/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/IslandOffspringSelectionGeneticAlgorithmMainLoop.cs
r16692 r16723 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.Operators; 28 28 using HeuristicLab.Parameters; 29 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;29 using HEAL.Attic; 30 30 31 31 namespace HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm { … … 34 34 /// </summary> 35 35 [Item("IslandOffspringSelectionGeneticAlgorithmMainLoop", "An island offspring selection genetic algorithm main loop operator.")] 36 [Storable Class]36 [StorableType("C7F1B472-A58A-46DA-AF59-C9D971AF9F3A")] 37 37 public sealed class IslandOffspringSelectionGeneticAlgorithmMainLoop : AlgorithmOperator { 38 38 #region Parameter Properties … … 136 136 137 137 [StorableConstructor] 138 private IslandOffspringSelectionGeneticAlgorithmMainLoop( bool deserializing) : base(deserializing) { }138 private IslandOffspringSelectionGeneticAlgorithmMainLoop(StorableConstructorFlag _) : base(_) { } 139 139 private IslandOffspringSelectionGeneticAlgorithmMainLoop(IslandOffspringSelectionGeneticAlgorithmMainLoop original, Cloner cloner) 140 140 : base(original, cloner) { -
branches/2521_ProblemRefactoring/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/OffspringSelectionGeneticAlgorithm.cs
r16692 r16723 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. … … 30 30 using HeuristicLab.Optimization.Operators; 31 31 using HeuristicLab.Parameters; 32 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;32 using HEAL.Attic; 33 33 using HeuristicLab.PluginInfrastructure; 34 34 using HeuristicLab.Random; … … 40 40 [Item("Offspring Selection Genetic Algorithm (OSGA)", "An offspring selection genetic algorithm (Affenzeller, M. et al. 2009. Genetic Algorithms and Genetic Programming - Modern Concepts and Practical Applications. CRC Press).")] 41 41 [Creatable(CreatableAttribute.Categories.PopulationBasedAlgorithms, Priority = 120)] 42 [Storable Class]42 [StorableType("7D0CF428-70B3-407F-A2AF-D544F115C998")] 43 43 public sealed class OffspringSelectionGeneticAlgorithm : HeuristicOptimizationEngineAlgorithm, IStorableContent { 44 44 public string Filename { get; set; } … … 216 216 217 217 [StorableConstructor] 218 private OffspringSelectionGeneticAlgorithm( bool deserializing) : base(deserializing) { }218 private OffspringSelectionGeneticAlgorithm(StorableConstructorFlag _) : base(_) { } 219 219 [StorableHook(HookType.AfterDeserialization)] 220 220 private void AfterDeserialization() { -
branches/2521_ProblemRefactoring/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/OffspringSelectionGeneticAlgorithmMainLoop.cs
r16692 r16723 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.Operators; 27 27 using HeuristicLab.Parameters; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 29 29 30 30 namespace HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm { … … 33 33 /// </summary> 34 34 [Item("OffspringSelectionGeneticAlgorithmMainLoop", "An operator which represents the main loop of an offspring selection genetic algorithm.")] 35 [Storable Class]35 [StorableType("AC9466CF-A058-40F4-B898-0D2ECD29D21A")] 36 36 public sealed class OffspringSelectionGeneticAlgorithmMainLoop : AlgorithmOperator { 37 37 #region Parameter properties … … 102 102 103 103 [StorableConstructor] 104 private OffspringSelectionGeneticAlgorithmMainLoop( bool deserializing) : base(deserializing) { }104 private OffspringSelectionGeneticAlgorithmMainLoop(StorableConstructorFlag _) : base(_) { } 105 105 private OffspringSelectionGeneticAlgorithmMainLoop(OffspringSelectionGeneticAlgorithmMainLoop original, Cloner cloner) 106 106 : base(original, cloner) { -
branches/2521_ProblemRefactoring/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/OffspringSelectionGeneticAlgorithmMainOperator.cs
r16692 r16723 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.Operators; 27 27 using HeuristicLab.Parameters; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 29 29 using HeuristicLab.Selection; 30 30 … … 34 34 /// </summary> 35 35 [Item("OffspringSelectionGeneticAlgorithmMainOperator", "An operator that represents the core of an offspring selection genetic algorithm.")] 36 [Storable Class]36 [StorableType("43910E64-FC79-4AFF-8049-F427442E32BF")] 37 37 public sealed class OffspringSelectionGeneticAlgorithmMainOperator : AlgorithmOperator { 38 38 #region Parameter properties … … 94 94 95 95 [StorableConstructor] 96 private OffspringSelectionGeneticAlgorithmMainOperator( bool deserializing) : base(deserializing) { }96 private OffspringSelectionGeneticAlgorithmMainOperator(StorableConstructorFlag _) : base(_) { } 97 97 private OffspringSelectionGeneticAlgorithmMainOperator(OffspringSelectionGeneticAlgorithmMainOperator original, Cloner cloner) 98 98 : base(original, cloner) { -
branches/2521_ProblemRefactoring/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/Plugin.cs.frame
r16692 r16723 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. … … 37 37 [PluginDependency("HeuristicLab.Optimization.Operators", "3.3")] 38 38 [PluginDependency("HeuristicLab.Parameters", "3.3")] 39 [PluginDependency("HeuristicLab. Persistence", "3.3")]39 [PluginDependency("HeuristicLab.Attic", "1.0")] 40 40 [PluginDependency("HeuristicLab.Random", "3.3")] 41 41 [PluginDependency("HeuristicLab.Selection", "3.3")] -
branches/2521_ProblemRefactoring/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/Properties/AssemblyInfo.cs.frame
r16692 r16723 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. -
branches/2521_ProblemRefactoring/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/SASEGASA.cs
r16692 r16723 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. … … 30 30 using HeuristicLab.Optimization.Operators; 31 31 using HeuristicLab.Parameters; 32 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;32 using HEAL.Attic; 33 33 using HeuristicLab.PluginInfrastructure; 34 34 using HeuristicLab.Random; … … 40 40 [Item("SASEGASA", "The self-adaptive segregative genetic algorithm with simulated annealing aspects (Affenzeller, M. et al. 2009. Genetic Algorithms and Genetic Programming - Modern Concepts and Practical Applications. CRC Press).")] 41 41 [Creatable(CreatableAttribute.Categories.PopulationBasedAlgorithms, Priority = 150)] 42 [Storable Class]42 [StorableType("1A52C36E-DC73-4D42-88CC-249130E4D784")] 43 43 public sealed class SASEGASA : HeuristicOptimizationEngineAlgorithm, IStorableContent { 44 44 public string Filename { get; set; } … … 244 244 245 245 [StorableConstructor] 246 private SASEGASA( bool deserializing) : base(deserializing) { }246 private SASEGASA(StorableConstructorFlag _) : base(_) { } 247 247 [StorableHook(HookType.AfterDeserialization)] 248 248 private void AfterDeserialization() { -
branches/2521_ProblemRefactoring/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/SASEGASAMainLoop.cs
r16692 r16723 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.Operators; 28 28 using HeuristicLab.Parameters; 29 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;29 using HEAL.Attic; 30 30 31 31 namespace HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm { … … 34 34 /// </summary> 35 35 [Item("SASEGASAMainLoop", "A SASEGASA main loop operator.")] 36 [Storable Class]36 [StorableType("46667EF7-908F-4422-8A3E-AE03781EE494")] 37 37 public sealed class SASEGASAMainLoop : AlgorithmOperator { 38 38 #region Parameter Properties … … 118 118 119 119 [StorableConstructor] 120 private SASEGASAMainLoop( bool deserializing) : base(deserializing) { }120 private SASEGASAMainLoop(StorableConstructorFlag _) : base(_) { } 121 121 private SASEGASAMainLoop(SASEGASAMainLoop original, Cloner cloner) 122 122 : base(original, cloner) { -
branches/2521_ProblemRefactoring/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/SuccessfulOffspringAnalysis/SuccessfulOffspringAnalyzer.cs
r16692 r16723 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. … … 30 30 using HeuristicLab.Optimization; 31 31 using HeuristicLab.Parameters; 32 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;32 using HEAL.Attic; 33 33 34 34 namespace HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm { … … 37 37 /// </summary> 38 38 [Item("SuccessfulOffspringAnalyzer", "An operator for analyzing certain properties in the successful offspring. The properties to be analyzed can be specified in the CollectedValues parameter.")] 39 [Storable Class]39 [StorableType("22674F63-CD16-4494-9699-3E5298714618")] 40 40 public sealed class SuccessfulOffspringAnalyzer : SingleSuccessorOperator, IAnalyzer { 41 41 public bool EnabledByDefault { … … 71 71 } 72 72 [StorableConstructor] 73 private SuccessfulOffspringAnalyzer( bool deserializing) : base(deserializing) { }73 private SuccessfulOffspringAnalyzer(StorableConstructorFlag _) : base(_) { } 74 74 private SuccessfulOffspringAnalyzer(SuccessfulOffspringAnalyzer original, Cloner cloner) : base(original, cloner) { } 75 75 public SuccessfulOffspringAnalyzer()
Note: See TracChangeset
for help on using the changeset viewer.