Changeset 17097 for stable/HeuristicLab.Algorithms.ScatterSearch
- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 10 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Algorithms.ScatterSearch/3.3/HeuristicLab.Algorithms.ScatterSearch-3.3.csproj
r11920 r17097 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 /> … … 83 83 </PropertyGroup> 84 84 <ItemGroup> 85 <Reference Include="Google.Protobuf, Version=3.6.1.0, Culture=neutral, PublicKeyToken=a7d26565bac4d604, processorArchitecture=MSIL"> 86 <HintPath>..\..\packages\Google.Protobuf.3.6.1\lib\net45\Google.Protobuf.dll</HintPath> 87 </Reference> 88 <Reference Include="HEAL.Attic, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 89 <HintPath>..\..\packages\HEAL.Attic.1.0.0-pre02\lib\net461\HEAL.Attic.dll</HintPath> 90 </Reference> 85 91 <Reference Include="System" /> 86 92 <Reference Include="System.Core" /> 87 93 <Reference Include="System.Drawing" /> 94 <Reference Include="System.Drawing.Common, Version=4.0.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL"> 95 <HintPath>..\..\packages\System.Drawing.Common.4.5.1\lib\net461\System.Drawing.Common.dll</HintPath> 96 </Reference> 88 97 <Reference Include="System.Xml.Linq" /> 89 98 <Reference Include="System.Data.DataSetExtensions" /> … … 95 104 <Compile Include="OffspringProcessor.cs" /> 96 105 <None Include="HeuristicLab.snk" /> 106 <None Include="packages.config" /> 97 107 <None Include="Plugin.cs.frame" /> 98 108 <Compile Include="Plugin.cs" /> -
stable/HeuristicLab.Algorithms.ScatterSearch/3.3/OffspringProcessor.cs
r15584 r17097 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() -
stable/HeuristicLab.Algorithms.ScatterSearch/3.3/Plugin.cs.frame
r15587 r17097 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. -
stable/HeuristicLab.Algorithms.ScatterSearch/3.3/PopulationRebuildMethod.cs
r15584 r17097 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() -
stable/HeuristicLab.Algorithms.ScatterSearch/3.3/Properties/AssemblyInfo.cs.frame
r15587 r17097 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. -
stable/HeuristicLab.Algorithms.ScatterSearch/3.3/ReferenceSetUpdateMethod.cs
r15584 r17097 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() -
stable/HeuristicLab.Algorithms.ScatterSearch/3.3/ScatterSearch.cs
r15584 r17097 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() { -
stable/HeuristicLab.Algorithms.ScatterSearch/3.3/ScatterSearchMainLoop.cs
r15584 r17097 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(); } -
stable/HeuristicLab.Algorithms.ScatterSearch/3.3/SolutionPoolUpdateMethod.cs
r15584 r17097 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() -
stable/HeuristicLab.Algorithms.ScatterSearch/3.3/packages.config
r16565 r17097 2 2 <packages> 3 3 <package id="Google.Protobuf" version="3.6.1" targetFramework="net461" /> 4 <package id="HEAL.Attic" version="1.0.0-pre0 1" targetFramework="net461" />4 <package id="HEAL.Attic" version="1.0.0-pre02" targetFramework="net461" /> 5 5 <package id="System.Drawing.Common" version="4.5.1" targetFramework="net461" /> 6 6 </packages>
Note: See TracChangeset
for help on using the changeset viewer.