Changeset 16662 for branches/2925_AutoDiffForDynamicalModels/HeuristicLab.Algorithms.GeneticAlgorithm/3.3
- Timestamp:
- 03/07/19 17:42:41 (6 years ago)
- Location:
- branches/2925_AutoDiffForDynamicalModels
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2925_AutoDiffForDynamicalModels
- Property svn:mergeinfo changed
-
branches/2925_AutoDiffForDynamicalModels/HeuristicLab.Algorithms.GeneticAlgorithm
- Property svn:mergeinfo deleted
-
branches/2925_AutoDiffForDynamicalModels/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/GeneticAlgorithm.cs
r15583 r16662 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 System; 23 23 using System.Linq; 24 using HEAL.Attic; 24 25 using HeuristicLab.Analysis; 25 26 using HeuristicLab.Common; … … 30 31 using HeuristicLab.Optimization.Operators; 31 32 using HeuristicLab.Parameters; 32 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;33 33 using HeuristicLab.PluginInfrastructure; 34 34 using HeuristicLab.Random; … … 40 40 [Item("Genetic Algorithm (GA)", "A genetic algorithm.")] 41 41 [Creatable(CreatableAttribute.Categories.PopulationBasedAlgorithms, Priority = 100)] 42 [Storable Class]42 [StorableType("B63D21BD-D6AE-474B-A319-AC92CCB30AF6")] 43 43 public sealed class GeneticAlgorithm : HeuristicOptimizationEngineAlgorithm, IStorableContent { 44 44 public string Filename { get; set; } … … 213 213 } 214 214 [StorableConstructor] 215 private GeneticAlgorithm( bool deserializing) : base(deserializing) { }215 private GeneticAlgorithm(StorableConstructorFlag _) : base(_) { } 216 216 [StorableHook(HookType.AfterDeserialization)] 217 217 private void AfterDeserialization() { -
branches/2925_AutoDiffForDynamicalModels/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/GeneticAlgorithmMainLoop.cs
r15583 r16662 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("GeneticAlgorithmMainLoop", "An operator which represents the main loop of a genetic algorithm.")] 36 [Storable Class]36 [StorableType("890C1856-16C9-45F0-A0DD-67A152A70D28")] 37 37 public sealed class GeneticAlgorithmMainLoop : AlgorithmOperator { 38 38 #region Parameter properties … … 92 92 93 93 [StorableConstructor] 94 private GeneticAlgorithmMainLoop( bool deserializing) : base(deserializing) { }94 private GeneticAlgorithmMainLoop(StorableConstructorFlag _) : base(_) { } 95 95 private GeneticAlgorithmMainLoop(GeneticAlgorithmMainLoop original, Cloner cloner) 96 96 : base(original, cloner) { -
branches/2925_AutoDiffForDynamicalModels/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/HeuristicLab.Algorithms.GeneticAlgorithm-3.3.csproj
r11623 r16662 20 20 <StartupObject> 21 21 </StartupObject> 22 <TargetFrameworkVersion>v4. 5</TargetFrameworkVersion>22 <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion> 23 23 <TargetFrameworkProfile> 24 24 </TargetFrameworkProfile> … … 112 112 </Reference> 113 113 <Reference Include="System.Data" /> 114 <Reference Include="System.Drawing" /> 114 115 <Reference Include="System.Xml" /> 115 116 </ItemGroup> … … 210 211 <Install>true</Install> 211 212 </BootstrapperPackage> 213 </ItemGroup> 214 <ItemGroup> 215 <Reference Include="HEAL.Attic, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 216 <SpecificVersion>False</SpecificVersion> 217 <HintPath>..\..\bin\HEAL.Attic.dll</HintPath> 218 <Private>False</Private> 219 </Reference> 212 220 </ItemGroup> 213 221 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> -
branches/2925_AutoDiffForDynamicalModels/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/IslandGeneticAlgorithm.cs
r15583 r16662 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 Genetic Algorithm (Island-GA)", "An island genetic algorithm.")] 41 41 [Creatable(CreatableAttribute.Categories.PopulationBasedAlgorithms, Priority = 110)] 42 [Storable Class]42 [StorableType("C36FD509-4EF2-4BA7-9483-8CFCEF7EDA91")] 43 43 public sealed class IslandGeneticAlgorithm : HeuristicOptimizationEngineAlgorithm, IStorableContent { 44 44 public string Filename { get; set; } … … 203 203 204 204 [StorableConstructor] 205 private IslandGeneticAlgorithm( bool deserializing) : base(deserializing) { }205 private IslandGeneticAlgorithm(StorableConstructorFlag _) : base(_) { } 206 206 [StorableHook(HookType.AfterDeserialization)] 207 207 private void AfterDeserialization() { -
branches/2925_AutoDiffForDynamicalModels/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/IslandGeneticAlgorithmMainLoop.cs
r15583 r16662 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 using HeuristicLab.Selection; 31 31 … … 35 35 /// </summary> 36 36 [Item("IslandGeneticAlgorithmMainLoop", "An island genetic algorithm main loop operator.")] 37 [Storable Class]37 [StorableType("E015F135-AA23-4425-A84A-DEF880185D0A")] 38 38 public sealed class IslandGeneticAlgorithmMainLoop : AlgorithmOperator { 39 39 #region Parameter Properties … … 119 119 120 120 [StorableConstructor] 121 private IslandGeneticAlgorithmMainLoop( bool deserializing) : base(deserializing) { }121 private IslandGeneticAlgorithmMainLoop(StorableConstructorFlag _) : base(_) { } 122 122 private IslandGeneticAlgorithmMainLoop(IslandGeneticAlgorithmMainLoop original, Cloner cloner) 123 123 : base(original, cloner) { -
branches/2925_AutoDiffForDynamicalModels/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/Plugin.cs.frame
r15589 r16662 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/2925_AutoDiffForDynamicalModels/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/Properties/AssemblyInfo.cs.frame
r15589 r16662 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.
Note: See TracChangeset
for help on using the changeset viewer.