Changeset 17097 for stable/HeuristicLab.Algorithms.ALPS/3.3/Analyzers
- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Algorithms.ALPS
- Property svn:mergeinfo changed
/branches/2520_PersistenceReintegration/HeuristicLab.Algorithms.ALPS (added) merged: 16452-16454,16462,16529,16539,16558-16559 /trunk/HeuristicLab.Algorithms.ALPS merged: 16565,16568
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Algorithms.ALPS/3.3/Analyzers/AgeDistributionAnalyzer.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. … … 28 28 using HeuristicLab.Optimization; 29 29 using HeuristicLab.Parameters; 30 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;30 using HEAL.Attic; 31 31 32 32 namespace HeuristicLab.Algorithms.ALPS { 33 33 // Based on QualityDistributionAnalyzer 34 34 [Item("AgeDistributionAnalyzer", "Analyzes the distribution of the ages in that it adds a Histogram of them into the result collection.")] 35 [Storable Class]35 [StorableType("714CE0E4-A88F-44A1-A2D0-92F4D8252C0C")] 36 36 public sealed class AgeDistributionAnalyzer : SingleSuccessorOperator, IAnalyzer, IIterationBasedOperator { 37 37 … … 69 69 70 70 [StorableConstructor] 71 private AgeDistributionAnalyzer(bool deserializing) 72 : base(deserializing) { } 71 private AgeDistributionAnalyzer(StorableConstructorFlag _) : base(_) { } 73 72 private AgeDistributionAnalyzer(AgeDistributionAnalyzer original, Cloner cloner) 74 73 : base(original, cloner) { } -
stable/HeuristicLab.Algorithms.ALPS/3.3/Analyzers/OldestAverageYoungestAgeAnalyzer.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. … … 29 29 using HeuristicLab.Optimization.Operators; 30 30 using HeuristicLab.Parameters; 31 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;31 using HEAL.Attic; 32 32 33 33 namespace HeuristicLab.Algorithms.ALPS { 34 34 [Item("OldestAverageYoungestAgeAnalyzer", "An operator which calculates the current oldest, average and youngest age in the scope tree.")] 35 [Storable Class]35 [StorableType("1AE2C4EF-BFCB-439C-AD5E-00E7740FD3D0")] 36 36 public sealed class OldestAverageYoungestAgeAnalyzer : AlgorithmOperator, IAnalyzer { 37 37 #region Parameter properties … … 67 67 #region Storing & Cloning 68 68 [StorableConstructor] 69 private OldestAverageYoungestAgeAnalyzer( bool deserializing) : base(deserializing) { }69 private OldestAverageYoungestAgeAnalyzer(StorableConstructorFlag _) : base(_) { } 70 70 private OldestAverageYoungestAgeAnalyzer(OldestAverageYoungestAgeAnalyzer original, Cloner cloner) 71 71 : base(original, cloner) { -
stable/HeuristicLab.Algorithms.ALPS/3.3/Analyzers/OldestAverageYoungestAgeCalculator.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. … … 25 25 using HeuristicLab.Operators; 26 26 using HeuristicLab.Parameters; 27 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;27 using HEAL.Attic; 28 28 29 29 namespace HeuristicLab.Algorithms.ALPS { 30 30 [Item("OldestAverageYoungestAgeCalculator", "An operator which calculates the oldest, average and youngest age of solutions in the scope tree.")] 31 [Storable Class]31 [StorableType("DF4FA02E-C328-4A6E-9096-5BFADFA9F5DE")] 32 32 public sealed class OldestAverageYoungestAgeCalculator : SingleSuccessorOperator { 33 33 public IScopeTreeLookupParameter<DoubleValue> AgeParameter { … … 46 46 #region Storing & Cloning 47 47 [StorableConstructor] 48 private OldestAverageYoungestAgeCalculator( bool deserializing) : base(deserializing) { }48 private OldestAverageYoungestAgeCalculator(StorableConstructorFlag _) : base(_) { } 49 49 private OldestAverageYoungestAgeCalculator(OldestAverageYoungestAgeCalculator original, Cloner cloner) : base(original, cloner) { } 50 50 public override IDeepCloneable Clone(Cloner cloner) {
Note: See TracChangeset
for help on using the changeset viewer.