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.CMAEvolutionStrategy/3.4/Terminator.cs

    r16453 r16462  
    2626using HeuristicLab.Optimization;
    2727using HeuristicLab.Parameters;
    28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HEAL.Fossil;
    2929using System;
    3030using System.Linq;
     
    3232namespace HeuristicLab.Algorithms.CMAEvolutionStrategy {
    3333  [Item("Terminator", "Decides if the algorithm should terminate or not.")]
    34   [StorableClass]
     34  [StorableType("BE0F0791-4B19-4AC0-ACD6-C0FBEF829DBC")]
    3535  public class Terminator : Operator, IIterationBasedOperator, ISingleObjectiveOperator {
    3636
     
    109109
    110110    [StorableConstructor]
    111     protected Terminator(bool deserializing) : base(deserializing) { }
     111    protected Terminator(StorableConstructorFlag _) : base(_) { }
    112112    protected Terminator(Terminator original, Cloner cloner)
    113113      : base(original, cloner) { }
Note: See TracChangeset for help on using the changeset viewer.