- Timestamp:
- 12/28/18 16:10:48 (6 years ago)
- Location:
- branches/2520_PersistenceReintegration/HeuristicLab.Algorithms.NSGA2/3.3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2520_PersistenceReintegration/HeuristicLab.Algorithms.NSGA2/3.3/HeuristicLab.Algorithms.NSGA2-3.3.csproj
r16454 r16462 166 166 <HintPath>..\..\packages\Google.Protobuf.3.6.1\lib\net45\Google.Protobuf.dll</HintPath> 167 167 </Reference> 168 <Reference Include="HEAL.Fossil, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">168 <Reference Include="HEAL.Fossil, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 169 169 <HintPath>..\..\packages\HEAL.Fossil.1.0.0\lib\netstandard2.0\HEAL.Fossil.dll</HintPath> 170 170 </Reference> -
branches/2520_PersistenceReintegration/HeuristicLab.Algorithms.NSGA2/3.3/NSGA2.cs
r16453 r16462 30 30 using HeuristicLab.Optimization.Operators; 31 31 using HeuristicLab.Parameters; 32 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;32 using HEAL.Fossil; 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) { -
branches/2520_PersistenceReintegration/HeuristicLab.Algorithms.NSGA2/3.3/NSGA2MainLoop.cs
r16453 r16462 26 26 using HeuristicLab.Optimization.Operators; 27 27 using HeuristicLab.Parameters; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Fossil; 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() {
Note: See TracChangeset
for help on using the changeset viewer.