Changeset 16723 for branches/2521_ProblemRefactoring/HeuristicLab.Problems.QuadraticAssignment.Algorithms
- Timestamp:
- 03/28/19 16:54:20 (6 years ago)
- Location:
- branches/2521_ProblemRefactoring
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring
- Property svn:mergeinfo changed
-
branches/2521_ProblemRefactoring/HeuristicLab.Problems.QuadraticAssignment.Algorithms/3.3/HeuristicLab.Problems.QuadraticAssignment.Algorithms-3.3.csproj
r11623 r16723 11 11 <RootNamespace>HeuristicLab.Problems.QuadraticAssignment.Algorithms</RootNamespace> 12 12 <AssemblyName>HeuristicLab.Problems.QuadraticAssignment.Algorithms-3.3</AssemblyName> 13 <TargetFrameworkVersion>v4. 5</TargetFrameworkVersion>13 <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion> 14 14 <FileAlignment>512</FileAlignment> 15 15 <TargetFrameworkProfile /> … … 201 201 <Private>False</Private> 202 202 </ProjectReference> 203 </ItemGroup> 204 <ItemGroup> 205 <Reference Include="HEAL.Attic, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 206 <SpecificVersion>False</SpecificVersion> 207 <HintPath>..\..\bin\HEAL.Attic.dll</HintPath> 208 <Private>False</Private> 209 </Reference> 203 210 </ItemGroup> 204 211 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> -
branches/2521_ProblemRefactoring/HeuristicLab.Problems.QuadraticAssignment.Algorithms/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. … … 35 35 [PluginDependency("HeuristicLab.Optimization.Operators", "3.3")] 36 36 [PluginDependency("HeuristicLab.Parameters", "3.3")] 37 [PluginDependency("HeuristicLab. Persistence", "3.3")]37 [PluginDependency("HeuristicLab.Attic", "1.0")] 38 38 [PluginDependency("HeuristicLab.Problems.QuadraticAssignment", "3.3")] 39 39 [PluginDependency("HeuristicLab.Random", "3.3")] -
branches/2521_ProblemRefactoring/HeuristicLab.Problems.QuadraticAssignment.Algorithms/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.Problems.QuadraticAssignment.Algorithms/3.3/RobustTabooSeachOperator.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.Problems.QuadraticAssignment.Algorithms { 33 33 [Item("RobustTabooSearchOperator", "Performs an iteration of the robust taboo search algorithm as described in Taillard 1991.")] 34 [Storable Class]34 [StorableType("D4916F45-70B0-4D02-8377-6E82BA079167")] 35 35 public sealed class RobustTabooSeachOperator : SingleSuccessorOperator, IIterationBasedOperator, IStochasticOperator, ISingleObjectiveOperator, IPermutationSolutionOperator { 36 36 … … 103 103 104 104 [StorableConstructor] 105 private RobustTabooSeachOperator( bool deserializing) : base(deserializing) { }105 private RobustTabooSeachOperator(StorableConstructorFlag _) : base(_) { } 106 106 private RobustTabooSeachOperator(RobustTabooSeachOperator original, Cloner cloner) 107 107 : base(original, cloner) { -
branches/2521_ProblemRefactoring/HeuristicLab.Problems.QuadraticAssignment.Algorithms/3.3/RobustTabooSearch.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("Robust Taboo Search (RTS)", "The algorithm is described in Taillard, E. 1991. Robust Taboo Search for the Quadratic Assignment Problem. Parallel Computing 17, pp. 443-455.")] 38 38 [Creatable(CreatableAttribute.Categories.SingleSolutionAlgorithms, Priority = 130)] 39 [Storable Class]39 [StorableType("8D1BB2DF-2093-46EB-AB9F-C5ABC1D749B6")] 40 40 public sealed class RobustTabooSearch : HeuristicOptimizationEngineAlgorithm, IStorableContent { 41 41 public string Filename { get; set; } … … 131 131 132 132 [StorableConstructor] 133 private RobustTabooSearch( bool deserializing) : base(deserializing) { }133 private RobustTabooSearch(StorableConstructorFlag _) : base(_) { } 134 134 private RobustTabooSearch(RobustTabooSearch original, Cloner cloner) 135 135 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.