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.PermutationEncoding/3.3/PermutationManipulator.cs

    r16453 r16462  
    2525using HeuristicLab.Optimization;
    2626using HeuristicLab.Parameters;
    27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     27using HEAL.Fossil;
    2828
    2929namespace HeuristicLab.Encodings.PermutationEncoding {
     
    3232  /// </summary>
    3333  [Item("PermutationManipulator", "A base class for permutation manipulation operators.")]
    34   [StorableClass]
     34  [StorableType("436622C7-1F84-4A07-B77A-019DA2A2DFC9")]
    3535  public abstract class PermutationManipulator : InstrumentedOperator, IPermutationManipulator, IStochasticOperator {
    3636    public override bool CanChangeName {
     
    4646
    4747    [StorableConstructor]
    48     protected PermutationManipulator(bool deserializing) : base(deserializing) { }
     48    protected PermutationManipulator(StorableConstructorFlag _) : base(_) { }
    4949    protected PermutationManipulator(PermutationManipulator original, Cloner cloner) : base(original, cloner) { }
    5050    protected PermutationManipulator()
Note: See TracChangeset for help on using the changeset viewer.