Changeset 17097 for stable/HeuristicLab.Algorithms.NSGA2
- Timestamp:
- 07/07/19 23:40:10 (4 years ago)
- Location:
- stable
- Files:
-
- 7 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Algorithms.NSGA2
- Property svn:mergeinfo changed
/trunk/HeuristicLab.Algorithms.NSGA2 merged: 16565,16568
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Algorithms.NSGA2/3.3/HeuristicLab.Algorithms.NSGA2-3.3.csproj
r11920 r17097 11 11 <RootNamespace>HeuristicLab.Algorithms.NSGA2</RootNamespace> 12 12 <AssemblyName>HeuristicLab.Algorithms.NSGA2-3.3</AssemblyName> 13 <TargetFrameworkVersion>v4. 5</TargetFrameworkVersion>13 <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion> 14 14 <FileAlignment>512</FileAlignment> 15 15 <SignAssembly>true</SignAssembly> … … 163 163 <Private>False</Private> 164 164 </ProjectReference> 165 <Reference Include="Google.Protobuf, Version=3.6.1.0, Culture=neutral, PublicKeyToken=a7d26565bac4d604, processorArchitecture=MSIL"> 166 <HintPath>..\..\packages\Google.Protobuf.3.6.1\lib\net45\Google.Protobuf.dll</HintPath> 167 </Reference> 168 <Reference Include="HEAL.Attic, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 169 <HintPath>..\..\packages\HEAL.Attic.1.0.0-pre02\lib\net461\HEAL.Attic.dll</HintPath> 170 </Reference> 165 171 <Reference Include="System" /> 166 172 <Reference Include="System.Core"> … … 168 174 </Reference> 169 175 <Reference Include="System.Data" /> 176 <Reference Include="System.Drawing" /> 177 <Reference Include="System.Drawing.Common, Version=4.0.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL"> 178 <HintPath>..\..\packages\System.Drawing.Common.4.5.1\lib\net461\System.Drawing.Common.dll</HintPath> 179 </Reference> 170 180 <Reference Include="System.Xml" /> 171 181 </ItemGroup> 172 182 <ItemGroup> 173 183 <None Include="HeuristicLab.snk" /> 184 <None Include="packages.config" /> 174 185 <None Include="Plugin.cs.frame" /> 175 186 <Compile Include="NSGA2.cs" /> -
stable/HeuristicLab.Algorithms.NSGA2/3.3/NSGA2.cs
r16078 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.PluginInfrastructure; 34 34 using HeuristicLab.Random; … … 40 40 [Item("NSGA-II", "The Nondominated Sorting Genetic Algorithm II was introduced in Deb et al. 2002. A Fast and Elitist Multiobjective Genetic Algorithm: NSGA-II. IEEE Transactions on Evolutionary Computation, 6(2), pp. 182-197.")] 41 41 [Creatable(CreatableAttribute.Categories.PopulationBasedAlgorithms, Priority = 135)] 42 [Storable Class]42 [StorableType("9F34A562-68E7-4C4A-B452-F915802BACDA")] 43 43 public class NSGA2 : HeuristicOptimizationEngineAlgorithm, IStorableContent { 44 44 public string Filename { get; set; } … … 162 162 163 163 [StorableConstructor] 164 protected NSGA2( bool deserializing) : base(deserializing) { }164 protected NSGA2(StorableConstructorFlag _) : base(_) { } 165 165 protected NSGA2(NSGA2 original, Cloner cloner) 166 166 : base(original, cloner) { -
stable/HeuristicLab.Algorithms.NSGA2/3.3/NSGA2MainLoop.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. … … 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("NSGA2MainLoop", "An operator which represents the main loop of the NSGA-II algorithm.")] 36 [Storable Class]36 [StorableType("F81EA9B1-0A1A-4597-BF2C-C830C32D3394")] 37 37 public class NSGA2MainLoop : AlgorithmOperator { 38 38 #region Parameter properties … … 85 85 86 86 [StorableConstructor] 87 protected NSGA2MainLoop( bool deserializing) : base(deserializing) { }87 protected NSGA2MainLoop(StorableConstructorFlag _) : base(_) { } 88 88 [StorableHook(HookType.AfterDeserialization)] 89 89 private void AfterDeserialization() { -
stable/HeuristicLab.Algorithms.NSGA2/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.NSGA2/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.NSGA2/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.