- Timestamp:
- 03/28/19 16:54:20 (6 years ago)
- Location:
- branches/2521_ProblemRefactoring
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring
- Property svn:mergeinfo changed
-
branches/2521_ProblemRefactoring/HeuristicLab.Algorithms.LocalSearch/3.3/HeuristicLab.Algorithms.LocalSearch-3.3.csproj
r16532 r16723 11 11 <RootNamespace>HeuristicLab.Algorithms.LocalSearch</RootNamespace> 12 12 <AssemblyName>HeuristicLab.Algorithms.LocalSearch-3.3</AssemblyName> 13 <TargetFrameworkVersion>v4. 5</TargetFrameworkVersion>13 <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion> 14 14 <TargetFrameworkProfile> 15 15 </TargetFrameworkProfile> … … 209 209 </BootstrapperPackage> 210 210 </ItemGroup> 211 <ItemGroup> 212 <Reference Include="HEAL.Attic, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 213 <SpecificVersion>False</SpecificVersion> 214 <HintPath>..\..\bin\HEAL.Attic.dll</HintPath> 215 <Private>False</Private> 216 </Reference> 217 </ItemGroup> 211 218 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> 212 219 <!-- To modify your build process, add your task inside one of the targets below and uncomment it. -
branches/2521_ProblemRefactoring/HeuristicLab.Algorithms.LocalSearch/3.3/LocalSearch.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. … … 31 31 using HeuristicLab.Optimization.Operators; 32 32 using HeuristicLab.Parameters; 33 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;33 using HEAL.Attic; 34 34 using HeuristicLab.Random; 35 35 … … 37 37 [Item("Local Search (LS)", "A local search algorithm.")] 38 38 [Creatable(CreatableAttribute.Categories.SingleSolutionAlgorithms, Priority = 100)] 39 [Storable Class]39 [StorableType("399F7E6A-4111-4F91-BB99-EFE721789E27")] 40 40 public sealed class LocalSearch : HeuristicOptimizationEngineAlgorithm, IStorableContent { 41 41 public string Filename { get; set; } … … 125 125 126 126 [StorableConstructor] 127 private LocalSearch( bool deserializing) : base(deserializing) { }127 private LocalSearch(StorableConstructorFlag _) : base(_) { } 128 128 [StorableHook(HookType.AfterDeserialization)] 129 129 private void AfterDeserialization() { -
branches/2521_ProblemRefactoring/HeuristicLab.Algorithms.LocalSearch/3.3/LocalSearchImprovementOperator.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 34 34 namespace HeuristicLab.Algorithms.LocalSearch { … … 37 37 /// </summary> 38 38 [Item("LocalSearchImprovementOperator", "A local search improvement operator.")] 39 [Storable Class]39 [StorableType("40424217-DBA8-4787-A38A-2AE7130CB69D")] 40 40 public sealed class LocalSearchImprovementOperator : SingleSuccessorOperator, ILocalImprovementAlgorithmOperator, IStochasticOperator, ISingleObjectiveOperator { 41 41 #region IGenericLocalImprovementOperator Properties … … 118 118 119 119 [StorableConstructor] 120 private LocalSearchImprovementOperator( bool deserializing) : base(deserializing) { }120 private LocalSearchImprovementOperator(StorableConstructorFlag _) : base(_) { } 121 121 private LocalSearchImprovementOperator(LocalSearchImprovementOperator original, Cloner cloner) 122 122 : base(original, cloner) { -
branches/2521_ProblemRefactoring/HeuristicLab.Algorithms.LocalSearch/3.3/LocalSearchMainLoop.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("LocalSearchMainLoop", "An operator which represents the main loop of a best improvement local search (if only a single move is generated in each iteration it is a first improvement local search).")] 36 [Storable Class]36 [StorableType("629DEE28-5E94-44C2-AFDA-83F7F0128091")] 37 37 public sealed class LocalSearchMainLoop : AlgorithmOperator { 38 38 #region Parameter properties … … 82 82 83 83 [StorableConstructor] 84 private LocalSearchMainLoop( bool deserializing) : base(deserializing) { }84 private LocalSearchMainLoop(StorableConstructorFlag _) : base(_) { } 85 85 public LocalSearchMainLoop() 86 86 : base() { -
branches/2521_ProblemRefactoring/HeuristicLab.Algorithms.LocalSearch/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.LocalSearch/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.
Note: See TracChangeset
for help on using the changeset viewer.