- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Analysis
- Property svn:mergeinfo changed
/branches/2520_PersistenceReintegration/HeuristicLab.Analysis (added) merged: 16452-16454,16462,16472,16483,16529-16530,16539,16558-16559 /trunk/HeuristicLab.Analysis merged: 16565,16568
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Analysis/3.3/AlleleFrequencyAnalysis/Allele.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. … … 22 22 using HeuristicLab.Common; 23 23 using HeuristicLab.Core; 24 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;24 using HEAL.Attic; 25 25 26 26 namespace HeuristicLab.Analysis { … … 29 29 /// </summary> 30 30 [Item("Allele", "Represents an allele of a solution which is used for allele analysis.")] 31 [Storable Class]31 [StorableType("27AE2AD2-D4A3-4187-A773-CDA518B8B28A")] 32 32 public class Allele : Item { 33 33 private string id; … … 55 55 #region Storing & Cloning 56 56 [StorableConstructor] 57 protected Allele( bool deserializing) : base(deserializing) { }57 protected Allele(StorableConstructorFlag _) : base(_) { } 58 58 protected Allele(Allele original, Cloner cloner) 59 59 : base(original, cloner) { -
stable/HeuristicLab.Analysis/3.3/AlleleFrequencyAnalysis/AlleleFrequency.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. … … 22 22 using HeuristicLab.Common; 23 23 using HeuristicLab.Core; 24 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;24 using HEAL.Attic; 25 25 26 26 namespace HeuristicLab.Analysis { … … 29 29 /// </summary> 30 30 [Item("AlleleFrequency", "Represents the frequency of an allele.")] 31 [Storable Class]31 [StorableType("9769F3D4-9207-4CDC-B473-8C18301EF418")] 32 32 public class AlleleFrequency : Item { 33 33 private string id; … … 91 91 #region Storing & Cloning 92 92 [StorableConstructor] 93 protected AlleleFrequency( bool deserializing) : base(deserializing) { }93 protected AlleleFrequency(StorableConstructorFlag _) : base(_) { } 94 94 protected AlleleFrequency(AlleleFrequency original, Cloner cloner) 95 95 : base(original, cloner) { -
stable/HeuristicLab.Analysis/3.3/AlleleFrequencyAnalysis/AlleleFrequencyAnalyzer.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; 30 30 using HeuristicLab.Parameters; 31 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;31 using HEAL.Attic; 32 32 33 33 namespace HeuristicLab.Analysis { … … 36 36 /// </summary> 37 37 [Item("AlleleFrequencyAnalyzer", "An operator for analyzing the frequency of alleles.")] 38 [Storable Class]38 [StorableType("FB4ABEB4-E94E-4B79-9356-8AC48D8F77BE")] 39 39 public abstract class AlleleFrequencyAnalyzer<T> : SingleSuccessorOperator, IAnalyzer, ISingleObjectiveOperator where T : class, IItem { 40 40 public virtual bool EnabledByDefault { … … 68 68 69 69 [StorableConstructor] 70 protected AlleleFrequencyAnalyzer( bool deserializing) : base(deserializing) { }70 protected AlleleFrequencyAnalyzer(StorableConstructorFlag _) : base(_) { } 71 71 protected AlleleFrequencyAnalyzer(AlleleFrequencyAnalyzer<T> original, Cloner cloner) : base(original, cloner) { } 72 72 public AlleleFrequencyAnalyzer() -
stable/HeuristicLab.Analysis/3.3/AlleleFrequencyAnalysis/AlleleFrequencyCollection.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. … … 24 24 using HeuristicLab.Common; 25 25 using HeuristicLab.Core; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Attic; 27 27 28 28 namespace HeuristicLab.Analysis { … … 31 31 /// </summary> 32 32 [Item("AlleleFrequencyCollection", "Represents a collection of allele frequencies.")] 33 [Storable Class]33 [StorableType("7BDABB5B-1FA0-4592-8C06-399DBEABB1CB")] 34 34 public class AlleleFrequencyCollection : ReadOnlyItemCollection<AlleleFrequency> { 35 35 public static new Image StaticItemImage { … … 38 38 39 39 [StorableConstructor] 40 protected AlleleFrequencyCollection( bool deserializing) : base(deserializing) { }40 protected AlleleFrequencyCollection(StorableConstructorFlag _) : base(_) { } 41 41 protected AlleleFrequencyCollection(AlleleFrequencyCollection original, Cloner cloner) : base(original, cloner) { } 42 42 public AlleleFrequencyCollection() : base() { } -
stable/HeuristicLab.Analysis/3.3/AlleleFrequencyAnalysis/AlleleFrequencyCollectionHistory.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. … … 24 24 using HeuristicLab.Common; 25 25 using HeuristicLab.Core; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Attic; 27 27 28 28 namespace HeuristicLab.Analysis { … … 31 31 /// </summary> 32 32 [Item("AlleleFrequencyCollectionHistory", "Represents history values of allele frequencies collections.")] 33 [Storable Class]33 [StorableType("4474E8A9-AA2C-4FED-A906-535DC2AC44A3")] 34 34 public class AlleleFrequencyCollectionHistory : ItemCollection<AlleleFrequencyCollection> { 35 35 public static new Image StaticItemImage { … … 38 38 39 39 [StorableConstructor] 40 protected AlleleFrequencyCollectionHistory( bool deserializing) : base(deserializing) { }40 protected AlleleFrequencyCollectionHistory(StorableConstructorFlag _) : base(_) { } 41 41 protected AlleleFrequencyCollectionHistory(AlleleFrequencyCollectionHistory original, Cloner cloner) : base(original, cloner) { } 42 42 public AlleleFrequencyCollectionHistory() : base() { }
Note: See TracChangeset
for help on using the changeset viewer.