- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Algorithms.MOCMAEvolutionStrategy
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Algorithms.MOCMAEvolutionStrategy/3.3/Indicators/CrowdingIndicator.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.Encodings.RealVectorEncoding; 28 28 using HeuristicLab.Optimization; 29 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;29 using HEAL.Attic; 30 30 31 31 namespace HeuristicLab.Algorithms.MOCMAEvolutionStrategy { 32 32 [Item("CrowdingIndicator", "Selection of Offspring based on CrowdingDistance")] 33 [Storable Class]33 [StorableType("FEC5F17A-C720-4411-8AD6-42BA0F392AE9")] 34 34 internal class CrowdingIndicator : Item, IIndicator { 35 35 #region Constructors and Cloning 36 36 [StorableConstructor] 37 protected CrowdingIndicator( bool deserializing) : base(deserializing) { }37 protected CrowdingIndicator(StorableConstructorFlag _) : base(_) { } 38 38 protected CrowdingIndicator(CrowdingIndicator original, Cloner cloner) : base(original, cloner) { } 39 39 public override IDeepCloneable Clone(Cloner cloner) { return new CrowdingIndicator(this, cloner); } -
stable/HeuristicLab.Algorithms.MOCMAEvolutionStrategy/3.3/Indicators/HypervolumeIndicator.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.Encodings.RealVectorEncoding; 28 28 using HeuristicLab.Optimization; 29 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;29 using HEAL.Attic; 30 30 using HeuristicLab.Problems.TestFunctions.MultiObjective; 31 31 namespace HeuristicLab.Algorithms.MOCMAEvolutionStrategy { 32 32 [Item("HypervolumeIndicator", "Selection of Offspring based on contributing Hypervolume")] 33 [Storable Class]33 [StorableType("ADF439D6-64E4-4C92-A4D3-E8C05B050406")] 34 34 internal class HypervolumeIndicator : Item, IIndicator { 35 35 #region Constructors and Cloning 36 36 [StorableConstructor] 37 protected HypervolumeIndicator( bool deserializing) : base(deserializing) { }37 protected HypervolumeIndicator(StorableConstructorFlag _) : base(_) { } 38 38 protected HypervolumeIndicator(HypervolumeIndicator original, Cloner cloner) : base(original, cloner) { } 39 39 public override IDeepCloneable Clone(Cloner cloner) { return new HypervolumeIndicator(this, cloner); } -
stable/HeuristicLab.Algorithms.MOCMAEvolutionStrategy/3.3/Indicators/MinimalDistanceIndicator.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.Encodings.RealVectorEncoding; 28 28 using HeuristicLab.Optimization; 29 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;29 using HEAL.Attic; 30 30 31 31 namespace HeuristicLab.Algorithms.MOCMAEvolutionStrategy { 32 32 [Item("MinimalDistanceIndicator", "Selection of Offspring based on distance to nearest neighbour")] 33 [Storable Class]33 [StorableType("FBBD4517-164C-4DEE-B87D-49B99172EDF4")] 34 34 internal class MinimalDistanceIndicator : Item, IIndicator { 35 35 36 36 #region Constructor and Cloning 37 37 [StorableConstructor] 38 protected MinimalDistanceIndicator( bool deserializing) : base(deserializing) { }38 protected MinimalDistanceIndicator(StorableConstructorFlag _) : base(_) { } 39 39 protected MinimalDistanceIndicator(MinimalDistanceIndicator original, Cloner cloner) : base(original, cloner) { } 40 40 public override IDeepCloneable Clone(Cloner cloner) { return new MinimalDistanceIndicator(this, cloner); }
Note: See TracChangeset
for help on using the changeset viewer.