Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/28/18 16:10:48 (6 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.Problems.VehicleRouting/3.4/PathRelinkers/VRPPathRelinker.cs

    r16453 r16462  
    2929using HeuristicLab.Optimization.Operators;
    3030using HeuristicLab.Parameters;
    31 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     31using HEAL.Fossil;
    3232using HeuristicLab.Problems.VehicleRouting.Encodings.Potvin;
    3333using HeuristicLab.Problems.VehicleRouting.Interfaces;
     
    4040  /// </summary>
    4141  [Item("VRPPathRelinker", "An operator which relinks paths between VRP solutions.")]
    42   [StorableClass]
     42  [StorableType("C0C17982-BC36-4DF9-8C33-2B6F9A19CA53")]
    4343  public sealed class VRPPathRelinker : SingleObjectivePathRelinker, IGeneralVRPOperator, IStochasticOperator {
    4444    #region Parameter properties
     
    5858
    5959    [StorableConstructor]
    60     private VRPPathRelinker(bool deserializing) : base(deserializing) { }
     60    private VRPPathRelinker(StorableConstructorFlag _) : base(_) { }
    6161    private VRPPathRelinker(VRPPathRelinker original, Cloner cloner) : base(original, cloner) { }
    6262    public VRPPathRelinker()
Note: See TracChangeset for help on using the changeset viewer.