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.LinearLinkageEncoding/3.4/ShakingOperators/LLEShakingOperator.cs

    r16453 r16462  
    2828using HeuristicLab.Optimization.Operators;
    2929using HeuristicLab.Parameters;
    30 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     30using HEAL.Fossil;
    3131
    3232namespace HeuristicLab.Encodings.LinearLinkageEncoding {
    3333  [Item("LLE Shaking Operator", "A shaking operator for VNS which uses LLE manipulators to perform the shaking.")]
    34   [StorableClass]
     34  [StorableType("D08F5FA0-BEAC-4AAE-A69A-7EFEC26513BA")]
    3535  public class LLEShakingOperator : ShakingOperator<ILinearLinkageManipulator>, IStochasticOperator, ILinearLinkageShakingOperator {
    3636
     
    4848
    4949    [StorableConstructor]
    50     protected LLEShakingOperator(bool deserializing) : base(deserializing) { }
     50    protected LLEShakingOperator(StorableConstructorFlag _) : base(_) { }
    5151    protected LLEShakingOperator(LLEShakingOperator original, Cloner cloner) : base(original, cloner) { }
    5252    public LLEShakingOperator()
Note: See TracChangeset for help on using the changeset viewer.