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.Encodings.IntegerVectorEncoding/3.3/IntegerVectorCreator.cs

    r16453 r16462  
    2626using HeuristicLab.Optimization;
    2727using HeuristicLab.Parameters;
    28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HEAL.Fossil;
    2929
    3030namespace HeuristicLab.Encodings.IntegerVectorEncoding {
     
    3333  /// </summary>
    3434  [Item("IntegerVectorCreator", "A base class for operators creating int-valued vectors.")]
    35   [StorableClass]
     35  [StorableType("3C20D629-EFCB-4A1C-81B4-1DF0942B27F7")]
    3636  public abstract class IntegerVectorCreator : InstrumentedOperator, IIntegerVectorCreator, IStochasticOperator {
    3737    public override bool CanChangeName {
     
    5252
    5353    [StorableConstructor]
    54     protected IntegerVectorCreator(bool deserializing) : base(deserializing) { }
     54    protected IntegerVectorCreator(StorableConstructorFlag _) : base(_) { }
    5555    protected IntegerVectorCreator(IntegerVectorCreator original, Cloner cloner) : base(original, cloner) { }
    5656    protected IntegerVectorCreator()
Note: See TracChangeset for help on using the changeset viewer.