Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/28/18 16:10:48 (5 years ago)
Author:
jkarder
Message:

#2520: worked on reintegration of new persistence

  • added nuget references to HEAL.Fossil
  • added StorableType attributes to many classes
  • changed signature of StorableConstructors
  • removed some classes in old persistence
  • removed some unnecessary usings
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2520_PersistenceReintegration/HeuristicLab.Algorithms.MOCMAEvolutionStrategy/3.3/Indicators/HypervolumeIndicator.cs

    r16453 r16462  
    2727using HeuristicLab.Encodings.RealVectorEncoding;
    2828using HeuristicLab.Optimization;
    29 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     29using HEAL.Fossil;
    3030using HeuristicLab.Problems.TestFunctions.MultiObjective;
    3131namespace HeuristicLab.Algorithms.MOCMAEvolutionStrategy {
    3232  [Item("HypervolumeIndicator", "Selection of Offspring based on contributing Hypervolume")]
    33   [StorableClass]
     33  [StorableType("ADF439D6-64E4-4C92-A4D3-E8C05B050406")]
    3434  internal class HypervolumeIndicator : Item, IIndicator {
    3535    #region Constructors and Cloning
    3636    [StorableConstructor]
    37     protected HypervolumeIndicator(bool deserializing) : base(deserializing) { }
     37    protected HypervolumeIndicator(StorableConstructorFlag _) : base(_) { }
    3838    protected HypervolumeIndicator(HypervolumeIndicator original, Cloner cloner) : base(original, cloner) { }
    3939    public override IDeepCloneable Clone(Cloner cloner) { return new HypervolumeIndicator(this, cloner); }
Note: See TracChangeset for help on using the changeset viewer.