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/IntegerVectorManipulator.cs

    r16453 r16462  
    2424using HeuristicLab.Optimization;
    2525using HeuristicLab.Parameters;
    26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     26using HEAL.Fossil;
    2727
    2828namespace HeuristicLab.Encodings.IntegerVectorEncoding {
     
    3131  /// </summary>
    3232  [Item("IntegerVectorManipulator", "A base class for operators that manipulate int-valued vectors.")]
    33   [StorableClass]
     33  [StorableType("CE399EA5-7FAD-4070-A89D-A0FC3431B02D")]
    3434  public abstract class IntegerVectorManipulator : IntegerVectorOperator, IIntegerVectorManipulator, IStochasticOperator {
    3535    public override bool CanChangeName {
     
    4444
    4545    [StorableConstructor]
    46     protected IntegerVectorManipulator(bool deserializing) : base(deserializing) { }
     46    protected IntegerVectorManipulator(StorableConstructorFlag _) : base(_) { }
    4747    protected IntegerVectorManipulator(IntegerVectorManipulator original, Cloner cloner) : base(original, cloner) { }
    4848    protected IntegerVectorManipulator()
Note: See TracChangeset for help on using the changeset viewer.