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/IntegerVectorCrossover.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("IntegerVectorCrossover", "A base class for operators that perform a crossover of int-valued vectors.")]
    33   [StorableClass]
     33  [StorableType("BE778213-C140-4B1C-A4A4-1D92D0ADAB45")]
    3434  public abstract class IntegerVectorCrossover : IntegerVectorOperator, IIntegerVectorCrossover, IStochasticOperator {
    3535    public override bool CanChangeName {
     
    4747
    4848    [StorableConstructor]
    49     protected IntegerVectorCrossover(bool deserializing) : base(deserializing) { }
     49    protected IntegerVectorCrossover(StorableConstructorFlag _) : base(_) { }
    5050    protected IntegerVectorCrossover(IntegerVectorCrossover original, Cloner cloner) : base(original, cloner) { }
    5151    protected IntegerVectorCrossover()
Note: See TracChangeset for help on using the changeset viewer.