Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/28/19 13:41:42 (6 years ago)
Author:
gkronber
Message:

#2520: merged changes from PersistenceOverhaul branch (r16451:16564) into trunk

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/HeuristicLab.Problems.VehicleRouting

  • trunk/HeuristicLab.Problems.VehicleRouting/3.4/Improver/VRPImprovementOperator.cs

    r15583 r16565  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2626using HeuristicLab.Optimization;
    2727using HeuristicLab.Parameters;
    28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HEAL.Attic;
    2929using HeuristicLab.Problems.VehicleRouting.Encodings;
    3030using HeuristicLab.Problems.VehicleRouting.Encodings.Potvin;
     
    3737  /// </summary>
    3838  [Item("VRPImprovementOperator", "A base class for operators which improve VRP solutions.")]
    39   [StorableClass]
     39  [StorableType("478FC98D-CB2E-4071-80E4-970BDC09EE32")]
    4040  public abstract class VRPImprovementOperator : VRPOperator, IGeneralVRPOperator, ISingleObjectiveImprovementOperator {
    4141    #region Parameter properties
     
    6161
    6262    [StorableConstructor]
    63     protected VRPImprovementOperator(bool deserializing) : base(deserializing) { }
     63    protected VRPImprovementOperator(StorableConstructorFlag _) : base(_) { }
    6464    protected VRPImprovementOperator(VRPImprovementOperator original, Cloner cloner) : base(original, cloner) { }
    6565    protected VRPImprovementOperator()
  • trunk/HeuristicLab.Problems.VehicleRouting/3.4/Improver/VRPIntraRouteImprovementOperator.cs

    r15583 r16565  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2323using HeuristicLab.Common;
    2424using HeuristicLab.Core;
    25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     25using HEAL.Attic;
    2626using HeuristicLab.Problems.VehicleRouting.Encodings.Potvin;
    2727
     
    3131  /// </summary>
    3232  [Item("VRPIntraRouteImprovementOperator", "An operator which improves VRP solutions.")]
    33   [StorableClass]
     33  [StorableType("297EAEDF-FD4E-48E1-B304-C13699E78CDA")]
    3434  public sealed class VRPIntraRouteImprovementOperator : VRPImprovementOperator {
    3535    [StorableConstructor]
    36     private VRPIntraRouteImprovementOperator(bool deserializing) : base(deserializing) { }
     36    private VRPIntraRouteImprovementOperator(StorableConstructorFlag _) : base(_) { }
    3737    private VRPIntraRouteImprovementOperator(VRPIntraRouteImprovementOperator original, Cloner cloner) : base(original, cloner) { }
    3838    public VRPIntraRouteImprovementOperator() : base() { }
Note: See TracChangeset for help on using the changeset viewer.