Changeset 16573 for addons/HeuristicLab.FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/Analysis/Aggregators
- Timestamp:
- 01/28/19 18:10:11 (6 years ago)
- Location:
- addons/HeuristicLab.FitnessLandscapeAnalysis
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
addons/HeuristicLab.FitnessLandscapeAnalysis
- Property svn:ignore
-
old new 3 3 *.user 4 4 *.suo 5 packages
-
- Property svn:ignore
-
addons/HeuristicLab.FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/Analysis/Aggregators/Aggregator.cs
r7202 r16573 7 7 using HeuristicLab.Optimization; 8 8 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 9 using HEAL.Attic; 9 10 10 11 namespace HeuristicLab.Analysis.FitnessLandscape { 11 12 12 13 [Item("Aggregator", "Base class of aggreagtors that aggregate results collected from several trajectories.")] 13 [Storable Class]14 [StorableType("9C6131AD-6544-4792-9223-9DABA3E52074")] 14 15 public abstract class Aggregator<T> : NamedItem, IAggregator where T : class, IItem { 15 16 … … 20 21 21 22 [StorableConstructor] 22 protected Aggregator( bool deserializing) : base(deserializing) { }23 protected Aggregator(StorableConstructorFlag _) : base(_) { } 23 24 protected Aggregator(Aggregator<T> original, Cloner cloner) 24 25 : base(original, cloner) { -
addons/HeuristicLab.FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/Analysis/Aggregators/AutoCorrelationAggregator.cs
r7128 r16573 12 12 using System.Drawing; 13 13 using HeuristicLab.Analysis.FitnessLandscape.Analysis; 14 using HEAL.Attic; 14 15 15 16 namespace HeuristicLab.Analysis.FitnessLandscape { 16 17 17 18 [Item("Auto Correlation Aggregator", "Aggregates auto correlation analyses.")] 18 [Storable Class]19 [StorableType("969A27FA-5E06-4945-BCA2-87FD869F02A4")] 19 20 public class AutoCorrelationAggregator : Aggregator<AutoCorrelationTable> { 20 21 21 22 [StorableConstructor] 22 protected AutoCorrelationAggregator( bool deserializing) : base(deserializing) { }23 protected AutoCorrelationAggregator(StorableConstructorFlag _) : base(_) { } 23 24 protected AutoCorrelationAggregator(AutoCorrelationAggregator original, Cloner cloner) : base(original, cloner) { } 24 25 public AutoCorrelationAggregator() { } -
addons/HeuristicLab.FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/Analysis/Aggregators/BoundingBoxAggregator.cs
r7128 r16573 6 6 using HeuristicLab.Optimization; 7 7 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 8 using HEAL.Attic; 8 9 9 10 namespace HeuristicLab.Analysis.FitnessLandscape { 10 11 11 12 [Item("BoundingBox Aggregator", "Aggregates bounding boxes")] 12 [Storable Class]13 [StorableType("E6E3FEEA-AEA5-4B6B-87CF-A0AFEF26D9FD")] 13 14 public class BoundingBoxAggregator : Aggregator<DoubleMatrix> { 14 15 15 16 [StorableConstructor] 16 protected BoundingBoxAggregator( bool deserializing) : base(deserializing) { }17 protected BoundingBoxAggregator(StorableConstructorFlag _) : base(_) { } 17 18 protected BoundingBoxAggregator(BoundingBoxAggregator original, Cloner cloner) : base(original, cloner) { } 18 19 public BoundingBoxAggregator() { } -
addons/HeuristicLab.FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/Analysis/Aggregators/EvolvabilityAggregator.cs
r7202 r16573 9 9 using HeuristicLab.Data; 10 10 using HeuristicLab.Common.Resources; 11 using HEAL.Attic; 11 12 12 13 namespace HeuristicLab.Analysis.FitnessLandscape { 13 14 14 15 [Item("Evolvability Aggregator", "Aggregates evolvability values into an evolvability portrait.")] 15 [Storable Class]16 [StorableType("B1471271-C89E-47A9-A0A1-4F0D64468F39")] 16 17 public class EvolvabilityAggregator : NamedItem, IAggregator { 17 18 … … 40 41 #region Construction and Cloning 41 42 [StorableConstructor] 42 protected EvolvabilityAggregator( bool deserializing) : base(deserializing) { }43 protected EvolvabilityAggregator(StorableConstructorFlag _) : base(_) { } 43 44 protected EvolvabilityAggregator(EvolvabilityAggregator original, Cloner cloner) 44 45 : base(original, cloner) { -
addons/HeuristicLab.FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/Analysis/Aggregators/InformationAnalysisAggregator.cs
r7128 r16573 8 8 using HeuristicLab.Optimization; 9 9 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 10 using HEAL.Attic; 10 11 11 12 namespace HeuristicLab.Analysis.FitnessLandscape { 12 13 13 14 [Item("InformationAnalysis Aggregator", "Aggregates information anlyses.")] 14 [Storable Class]15 [StorableType("30A0DDD6-CF94-4061-95C2-5717617EB7C1")] 15 16 public class InformationAnalysisAggregator : Aggregator<InformationAnalysisTable> { 16 17 17 18 [StorableConstructor] 18 protected InformationAnalysisAggregator( bool deserializing) : base(deserializing) { }19 protected InformationAnalysisAggregator(StorableConstructorFlag _) : base(_) { } 19 20 protected InformationAnalysisAggregator(InformationAnalysisAggregator original, Cloner cloner) : base(original, cloner) { } 20 21 public InformationAnalysisAggregator() { } -
addons/HeuristicLab.FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/Analysis/Aggregators/InformationAnalysisPeakAggregator.cs
r7128 r16573 9 9 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 10 10 using HeuristicLab.Data; 11 using HEAL.Attic; 11 12 12 13 namespace HeuristicLab.Analysis.FitnessLandscape { 13 14 14 15 [Item("InformationAnalysis Peak Aggregator", "Aggregates peak information anlyses.")] 15 [Storable Class]16 [StorableType("BDB8568B-EBF5-437C-81C2-C68F77C3FCEF")] 16 17 public class InformationAnalysisPeakAggregator : Aggregator<InformationAnalysisTable> { 17 18 18 19 [StorableConstructor] 19 protected InformationAnalysisPeakAggregator( bool deserializing) : base(deserializing) { }20 protected InformationAnalysisPeakAggregator(StorableConstructorFlag _) : base(_) { } 20 21 protected InformationAnalysisPeakAggregator(InformationAnalysisPeakAggregator original, Cloner cloner) : base(original, cloner) { } 21 22 public InformationAnalysisPeakAggregator() { } -
addons/HeuristicLab.FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/Analysis/Aggregators/InformationAnalysisValueAggregator.cs
r7202 r16573 10 10 using HeuristicLab.Data; 11 11 using HeuristicLab.Common.Resources; 12 using HEAL.Attic; 12 13 13 14 namespace HeuristicLab.Analysis.FitnessLandscape { 14 15 15 16 [Item("InformationAnalysisValue Aggregator", "Aggregates information anlysis values.")] 16 [Storable Class]17 [StorableType("829CDE87-6290-42AE-93EF-5095B52AD6FF")] 17 18 public class InformationAnalysisValueAggregator : NamedItem, IAggregator { 18 19 … … 35 36 #region Construction and Cloning 36 37 [StorableConstructor] 37 protected InformationAnalysisValueAggregator( bool deserializing) : base(deserializing) { }38 protected InformationAnalysisValueAggregator(StorableConstructorFlag _) : base(_) { } 38 39 protected InformationAnalysisValueAggregator(InformationAnalysisValueAggregator original, Cloner cloner) 39 40 : base(original, cloner) { -
addons/HeuristicLab.FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/Analysis/Aggregators/InformationStabilityAggregator.cs
r7128 r16573 12 12 using System.Drawing; 13 13 using HeuristicLab.Analysis.FitnessLandscape.Analysis; 14 using HEAL.Attic; 14 15 15 16 namespace HeuristicLab.Analysis.FitnessLandscape { 16 17 17 18 [Item("Information Stability Aggregator", "Aggregates information stability analyses.")] 18 [Storable Class]19 [StorableType("0E2319B7-EB74-4363-A89F-26A3517CB7F7")] 19 20 public class InformationStabilityAggregator : Aggregator<InformationStabilityTable> { 20 21 21 22 [StorableConstructor] 22 protected InformationStabilityAggregator( bool deserializing) : base(deserializing) { }23 protected InformationStabilityAggregator(StorableConstructorFlag _) : base(_) { } 23 24 protected InformationStabilityAggregator(InformationStabilityAggregator original, Cloner cloner) : base(original, cloner) { } 24 25 public InformationStabilityAggregator() { } -
addons/HeuristicLab.FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/Analysis/Aggregators/QualityTrailSummaryAggregator.cs
r7128 r16573 5 5 using HeuristicLab.Optimization; 6 6 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 7 using HEAL.Attic; 7 8 8 9 namespace HeuristicLab.Analysis.FitnessLandscape { 9 10 10 11 [Item("QualityTrailSummary Aggregator", "Aggregates quality trail summaries.")] 11 [Storable Class]12 [StorableType("B07DD0C5-AAA2-46C4-8BF2-64EB07951985")] 12 13 public class QualityTrailSummaryAggregator : Aggregator<QualityTrailSummaryTable> { 13 14 14 15 [StorableConstructor] 15 protected QualityTrailSummaryAggregator( bool deserializing) : base(deserializing) { }16 protected QualityTrailSummaryAggregator(StorableConstructorFlag _) : base(_) { } 16 17 protected QualityTrailSummaryAggregator(QualityTrailSummaryAggregator original, Cloner cloner) : base(original, cloner) { } 17 18 public QualityTrailSummaryAggregator() { } -
addons/HeuristicLab.FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/Analysis/Aggregators/RuggednessAggregator.cs
r7202 r16573 12 12 using System.Drawing; 13 13 using HeuristicLab.Analysis.FitnessLandscape.Analysis; 14 using HEAL.Attic; 14 15 15 16 namespace HeuristicLab.Analysis.FitnessLandscape { 16 17 17 18 [Item("Ruggedness Aggregator", "Aggregates scalar ruggedness analyses.")] 18 [Storable Class]19 [StorableType("03C63217-F50F-4111-B978-DF83ADC5DDBE")] 19 20 public class RuggednessAggregator : NamedItem, IAggregator { 20 21 … … 27 28 #region Construction & Cloning 28 29 [StorableConstructor] 29 protected RuggednessAggregator( bool deserializing) : base(deserializing) { }30 protected RuggednessAggregator(StorableConstructorFlag _) : base(_) { } 30 31 protected RuggednessAggregator(RuggednessAggregator original, Cloner cloner) : base(original, cloner) { 31 32 autocorrelations = original.autocorrelations.ToList(); -
addons/HeuristicLab.FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/Analysis/Aggregators/UpDownAggregatorAggregator.cs
r9143 r16573 12 12 using System.Drawing; 13 13 using HeuristicLab.Analysis.FitnessLandscape.Analysis; 14 using HEAL.Attic; 14 15 15 16 namespace HeuristicLab.Analysis.FitnessLandscape { 16 17 17 18 [Item("Up Down Aggregator", "Aggregates scalar up down analyses.")] 18 [Storable Class]19 [StorableType("597E3537-ADE8-4B7A-A34B-AD6AF105493F")] 19 20 public class UpDownAggregator : NamedItem, IAggregator { 20 21 … … 33 34 #region Construction & Cloning 34 35 [StorableConstructor] 35 protected UpDownAggregator( bool deserializing) : base(deserializing) { }36 protected UpDownAggregator(StorableConstructorFlag _) : base(_) { } 36 37 protected UpDownAggregator(UpDownAggregator original, Cloner cloner) : base(original, cloner) { 37 38 downWalkLengths = original.downWalkLengths.ToList();
Note: See TracChangeset
for help on using the changeset viewer.