Changeset 16565 for trunk/HeuristicLab.Algorithms.RandomSearch
- Timestamp:
- 01/28/19 13:41:42 (6 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/2520_PersistenceReintegration (added) merged: 16451-16454,16462,16465-16468,16470-16472,16474,16476-16477,16479-16487,16529-16530,16539,16551-16555,16558-16559,16562-16564
- Property svn:mergeinfo changed
-
trunk/HeuristicLab.Algorithms.RandomSearch/3.3/HeuristicLab.Algorithms.RandomSearch-3.3.csproj
r13863 r16565 10 10 <RootNamespace>HeuristicLab.Algorithms.RandomSearch</RootNamespace> 11 11 <AssemblyName>HeuristicLab.Algorithms.RandomSearch-3.3</AssemblyName> 12 <TargetFrameworkVersion>v4. 5</TargetFrameworkVersion>12 <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion> 13 13 <FileAlignment>512</FileAlignment> 14 14 </PropertyGroup> … … 73 73 </PropertyGroup> 74 74 <ItemGroup> 75 <Reference Include="Google.Protobuf, Version=3.6.1.0, Culture=neutral, PublicKeyToken=a7d26565bac4d604, processorArchitecture=MSIL"> 76 <HintPath>..\..\packages\Google.Protobuf.3.6.1\lib\net45\Google.Protobuf.dll</HintPath> 77 </Reference> 78 <Reference Include="HEAL.Attic, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 79 <HintPath>..\..\packages\HEAL.Attic.1.0.0-pre01\lib\netstandard2.0\HEAL.Attic.dll</HintPath> 80 </Reference> 75 81 <Reference Include="System" /> 76 82 <Reference Include="System.Core" /> 83 <Reference Include="System.Drawing" /> 84 <Reference Include="System.Drawing.Common, Version=4.0.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL"> 85 <HintPath>..\..\packages\System.Drawing.Common.4.5.1\lib\net461\System.Drawing.Common.dll</HintPath> 86 </Reference> 77 87 </ItemGroup> 78 88 <ItemGroup> 79 89 <Compile Include="RandomSearchAlgorithm.cs" /> 80 90 <None Include="HeuristicLab.snk" /> 91 <None Include="packages.config" /> 81 92 <None Include="Plugin.cs.frame" /> 82 93 <Compile Include="Plugin.cs" /> -
trunk/HeuristicLab.Algorithms.RandomSearch/3.3/Plugin.cs.frame
r15589 r16565 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. -
trunk/HeuristicLab.Algorithms.RandomSearch/3.3/Properties/AssemblyInfo.cs.frame
r15589 r16565 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. -
trunk/HeuristicLab.Algorithms.RandomSearch/3.3/RandomSearchAlgorithm.cs
r15583 r16565 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("Random Search Algorithm (RS)", "A random search algorithm.")] 38 38 [Creatable(CreatableAttribute.Categories.SingleSolutionAlgorithms, Priority = 150)] 39 [Storable Class]39 [StorableType("51EFBCCE-00A7-4E97-8177-85774E71E681")] 40 40 public sealed class RandomSearchAlgorithm : HeuristicOptimizationEngineAlgorithm, IStorableContent { 41 41 public string Filename { get; set; } … … 128 128 #region Constructors 129 129 [StorableConstructor] 130 private RandomSearchAlgorithm(bool deserializing) 131 : base(deserializing) { } 130 private RandomSearchAlgorithm(StorableConstructorFlag _) : base(_) { } 132 131 [StorableHook(HookType.AfterDeserialization)] 133 132 private void AfterDeserialization() {
Note: See TracChangeset
for help on using the changeset viewer.