- Timestamp:
- 03/07/19 17:42:41 (6 years ago)
- Location:
- branches/2925_AutoDiffForDynamicalModels
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2925_AutoDiffForDynamicalModels
- Property svn:mergeinfo changed
-
branches/2925_AutoDiffForDynamicalModels/HeuristicLab.Algorithms.RandomSearch
- Property svn:mergeinfo deleted
-
branches/2925_AutoDiffForDynamicalModels/HeuristicLab.Algorithms.RandomSearch/3.3/HeuristicLab.Algorithms.RandomSearch-3.3.csproj
r13863 r16662 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> … … 75 75 <Reference Include="System" /> 76 76 <Reference Include="System.Core" /> 77 <Reference Include="System.Drawing" /> 77 78 </ItemGroup> 78 79 <ItemGroup> … … 134 135 </ProjectReference> 135 136 </ItemGroup> 137 <ItemGroup> 138 <Reference Include="HEAL.Attic, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 139 <SpecificVersion>False</SpecificVersion> 140 <HintPath>..\..\bin\HEAL.Attic.dll</HintPath> 141 <Private>False</Private> 142 </Reference> 143 </ItemGroup> 136 144 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> 137 145 <PropertyGroup> -
branches/2925_AutoDiffForDynamicalModels/HeuristicLab.Algorithms.RandomSearch/3.3/Plugin.cs.frame
r15589 r16662 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 public class HeuristicLabAlgorithmsRandomPlugin : PluginBase { -
branches/2925_AutoDiffForDynamicalModels/HeuristicLab.Algorithms.RandomSearch/3.3/Properties/AssemblyInfo.cs.frame
r15589 r16662 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/2925_AutoDiffForDynamicalModels/HeuristicLab.Algorithms.RandomSearch/3.3/RandomSearchAlgorithm.cs
r15583 r16662 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.