Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/28/19 18:10:11 (5 years ago)
Author:
gkronber
Message:

#2520: changed HeuristicLab.FLA addon to compile with new HL.Persistence

Location:
addons/HeuristicLab.FitnessLandscapeAnalysis
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • addons/HeuristicLab.FitnessLandscapeAnalysis

    • Property svn:ignore
      •  

        old new  
        33*.user
        44*.suo
         5packages
  • addons/HeuristicLab.FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/Analysis/Aggregators/Aggregator.cs

    r7202 r16573  
    77using HeuristicLab.Optimization;
    88using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     9using HEAL.Attic;
    910
    1011namespace HeuristicLab.Analysis.FitnessLandscape {
    1112
    1213  [Item("Aggregator", "Base class of aggreagtors that aggregate results collected from several trajectories.")]
    13   [StorableClass]
     14  [StorableType("9C6131AD-6544-4792-9223-9DABA3E52074")]
    1415  public abstract class Aggregator<T> : NamedItem, IAggregator where T : class, IItem {
    1516
     
    2021
    2122    [StorableConstructor]
    22     protected Aggregator(bool deserializing) : base(deserializing) { }
     23    protected Aggregator(StorableConstructorFlag _) : base(_) { }
    2324    protected Aggregator(Aggregator<T> original, Cloner cloner)
    2425      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.