- Timestamp:
- 03/28/19 16:54:20 (6 years ago)
- Location:
- branches/2521_ProblemRefactoring
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring
- Property svn:mergeinfo changed
-
branches/2521_ProblemRefactoring/HeuristicLab.Algorithms.ScatterSearch/3.3/HeuristicLab.Algorithms.ScatterSearch-3.3.csproj
r11623 r16723 11 11 <RootNamespace>HeuristicLab.Algorithms.ScatterSearch</RootNamespace> 12 12 <AssemblyName>HeuristicLab.Algorithms.ScatterSearch-3.3</AssemblyName> 13 <TargetFrameworkVersion>v4. 5</TargetFrameworkVersion>13 <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion> 14 14 <FileAlignment>512</FileAlignment> 15 15 <TargetFrameworkProfile /> … … 171 171 <Private>False</Private> 172 172 </ProjectReference> 173 </ItemGroup> 174 <ItemGroup> 175 <Reference Include="HEAL.Attic, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 176 <SpecificVersion>False</SpecificVersion> 177 <HintPath>..\..\bin\HEAL.Attic.dll</HintPath> 178 <Private>False</Private> 179 </Reference> 173 180 </ItemGroup> 174 181 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> -
branches/2521_ProblemRefactoring/HeuristicLab.Algorithms.ScatterSearch/3.3/OffspringProcessor.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. … … 24 24 using HeuristicLab.Operators; 25 25 using HeuristicLab.Parameters; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Attic; 27 27 28 28 namespace HeuristicLab.Algorithms.ScatterSearch { … … 31 31 /// </summary> 32 32 [Item("OffspringProcessor", "An operator that creates a subscope with subscopes for every variable in the current scope.")] 33 [Storable Class]33 [StorableType("A89D522A-CAFF-4899-A24D-5EB463EEB03F")] 34 34 public sealed class OffspringProcessor : SingleSuccessorOperator { 35 35 #region Parameter properties … … 46 46 47 47 [StorableConstructor] 48 private OffspringProcessor( bool deserializing) : base(deserializing) { }48 private OffspringProcessor(StorableConstructorFlag _) : base(_) { } 49 49 private OffspringProcessor(OffspringProcessor original, Cloner cloner) : base(original, cloner) { } 50 50 public OffspringProcessor() -
branches/2521_ProblemRefactoring/HeuristicLab.Algorithms.ScatterSearch/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.ScatterSearch/3.3/PopulationRebuildMethod.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; 28 28 using HeuristicLab.Parameters; 29 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;29 using HEAL.Attic; 30 30 31 31 namespace HeuristicLab.Algorithms.ScatterSearch { … … 34 34 /// </summary> 35 35 [Item("PopulationRebuildMethod", "An operator that updates the reference set and rebuilds the population.")] 36 [Storable Class]36 [StorableType("B993B7E3-E510-4211-AD13-90517C810E34")] 37 37 public sealed class PopulationRebuildMethod : SingleSuccessorOperator, ISingleObjectiveOperator { 38 38 #region Parameter properties … … 76 76 77 77 [StorableConstructor] 78 private PopulationRebuildMethod( bool deserializing) : base(deserializing) { }78 private PopulationRebuildMethod(StorableConstructorFlag _) : base(_) { } 79 79 private PopulationRebuildMethod(PopulationRebuildMethod original, Cloner cloner) : base(original, cloner) { } 80 80 public PopulationRebuildMethod() -
branches/2521_ProblemRefactoring/HeuristicLab.Algorithms.ScatterSearch/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.ScatterSearch/3.3/ReferenceSetUpdateMethod.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. … … 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.Algorithms.ScatterSearch { … … 35 35 /// </summary> 36 36 [Item("ReferenceSetUpdateMethod", "An operator that updates the reference set.")] 37 [Storable Class]37 [StorableType("478625DC-87BD-4111-98D1-45A9939198C8")] 38 38 public sealed class ReferenceSetUpdateMethod : SingleSuccessorOperator { 39 39 #region Parameter properties … … 59 59 60 60 [StorableConstructor] 61 private ReferenceSetUpdateMethod( bool deserializing) : base(deserializing) { }61 private ReferenceSetUpdateMethod(StorableConstructorFlag _) : base(_) { } 62 62 private ReferenceSetUpdateMethod(ReferenceSetUpdateMethod original, Cloner cloner) : base(original, cloner) { } 63 63 public ReferenceSetUpdateMethod() -
branches/2521_ProblemRefactoring/HeuristicLab.Algorithms.ScatterSearch/3.3/ScatterSearch.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.Random; 34 34 using HeuristicLab.Selection; … … 40 40 [Item("Scatter Search (SS)", "A scatter search algorithm.")] 41 41 [Creatable(CreatableAttribute.Categories.PopulationBasedAlgorithms, Priority = 500)] 42 [Storable Class]42 [StorableType("B0A218C1-8D92-4BDF-AAB7-C6396612C26B")] 43 43 public sealed class ScatterSearch : HeuristicOptimizationEngineAlgorithm, IStorableContent { 44 44 public string Filename { get; set; } … … 157 157 158 158 [StorableConstructor] 159 private ScatterSearch( bool deserializing) : base(deserializing) { }159 private ScatterSearch(StorableConstructorFlag _) : base(_) { } 160 160 [StorableHook(HookType.AfterDeserialization)] 161 161 private void AfterDeserialization() { -
branches/2521_ProblemRefactoring/HeuristicLab.Algorithms.ScatterSearch/3.3/ScatterSearchMainLoop.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 using HeuristicLab.Selection; 31 31 … … 35 35 /// </summary> 36 36 [Item("ScatterSearchMainLoop", "An operator which represents a scatter search.")] 37 [Storable Class]37 [StorableType("CDEB69B9-A0D9-4E84-80FD-347E16A1A8FE")] 38 38 public sealed class ScatterSearchMainLoop : AlgorithmOperator { 39 39 #region Parameter properties … … 170 170 171 171 [StorableConstructor] 172 private ScatterSearchMainLoop( bool deserializing) : base(deserializing) { }172 private ScatterSearchMainLoop(StorableConstructorFlag _) : base(_) { } 173 173 private ScatterSearchMainLoop(ScatterSearchMainLoop original, Cloner cloner) : base(original, cloner) { } 174 174 public ScatterSearchMainLoop() : base() { Initialize(); } -
branches/2521_ProblemRefactoring/HeuristicLab.Algorithms.ScatterSearch/3.3/SolutionPoolUpdateMethod.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. … … 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.Algorithms.ScatterSearch { … … 35 35 /// </summary> 36 36 [Item("SolutionPoolUpdateMethod", "An operator that updates the solution pool.")] 37 [Storable Class]37 [StorableType("F295B5C8-8551-4DFC-A38C-354E14CED2E3")] 38 38 public sealed class SolutionPoolUpdateMethod : SingleSuccessorOperator, ISingleObjectiveOperator { 39 39 #region Parameter properties … … 79 79 80 80 [StorableConstructor] 81 private SolutionPoolUpdateMethod( bool deserializing) : base(deserializing) { }81 private SolutionPoolUpdateMethod(StorableConstructorFlag _) : base(_) { } 82 82 private SolutionPoolUpdateMethod(SolutionPoolUpdateMethod original, Cloner cloner) : base(original, cloner) { } 83 83 public SolutionPoolUpdateMethod()
Note: See TracChangeset
for help on using the changeset viewer.