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:
24 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/HeuristicLab.Problems.VehicleRouting

  • trunk/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/MultiDepotVRP/MDCVRP/MDCVRPEvaluator.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.
     
    2424using HeuristicLab.Data;
    2525using HeuristicLab.Parameters;
    26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     26using HEAL.Attic;
    2727using HeuristicLab.Problems.VehicleRouting.Interfaces;
    2828using HeuristicLab.Problems.VehicleRouting.Variants;
     
    3030namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances {
    3131  [Item("MDCVRPEvaluator", "Represents a multi depot CVRP evaluator.")]
    32   [StorableClass]
     32  [StorableType("E59F6449-7DA3-4842-A0D8-C5BECC965642")]
    3333  public class MDCVRPEvaluator : VRPEvaluator {
    3434    public ILookupParameter<DoubleValue> OverloadParameter {
     
    135135
    136136    [StorableConstructor]
    137     protected MDCVRPEvaluator(bool deserializing) : base(deserializing) { }
     137    protected MDCVRPEvaluator(StorableConstructorFlag _) : base(_) { }
    138138
    139139    public MDCVRPEvaluator() {
  • trunk/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/MultiDepotVRP/MDCVRP/MDCVRPProblemInstance.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.
     
    2828using HeuristicLab.Optimization;
    2929using HeuristicLab.Parameters;
    30 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     30using HEAL.Attic;
    3131using HeuristicLab.PluginInfrastructure;
    3232using HeuristicLab.Problems.VehicleRouting.Interfaces;
     
    3535namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances {
    3636  [Item("MDCVRPProblemInstance", "Represents a multi depot CVRP instance.")]
    37   [StorableClass]
     37  [StorableType("19F824AB-6C66-4FB6-88D5-3C163BF789E6")]
    3838  public class MDCVRPProblemInstance : MultiDepotVRPProblemInstance, IHeterogenousCapacitatedProblemInstance {
    3939    protected IValueParameter<DoubleArray> CapacityParameter {
     
    8585
    8686    [StorableConstructor]
    87     protected MDCVRPProblemInstance(bool deserializing) : base(deserializing) { }
     87    protected MDCVRPProblemInstance(StorableConstructorFlag _) : base(_) { }
    8888
    8989    public MDCVRPProblemInstance() {
  • trunk/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/MultiDepotVRP/MDCVRP/MDCVRPTW/MDCVRPPDTW/MDCVRPPDTWEvaluator.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.Data;
    2727using HeuristicLab.Parameters;
    28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HEAL.Attic;
    2929using HeuristicLab.Problems.VehicleRouting.Interfaces;
    3030using HeuristicLab.Problems.VehicleRouting.Variants;
     
    3232namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances {
    3333  [Item("MDCVRPPDTWEvaluator", "Represents a multi depot CVRPPDTW evaluator.")]
    34   [StorableClass]
     34  [StorableType("4C4D6FA1-A16B-47B5-99D8-7F3D7C3D286A")]
    3535  public class MDCVRPPDTWEvaluator : MDCVRPTWEvaluator {
    3636    public ILookupParameter<IntValue> PickupViolationsParameter {
     
    324324
    325325    [StorableConstructor]
    326     protected MDCVRPPDTWEvaluator(bool deserializing) : base(deserializing) { }
     326    protected MDCVRPPDTWEvaluator(StorableConstructorFlag _) : base(_) { }
    327327
    328328    public MDCVRPPDTWEvaluator() {
  • trunk/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/MultiDepotVRP/MDCVRP/MDCVRPTW/MDCVRPPDTW/MDCVRPPDTWProblemInstance.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.
     
    2828using HeuristicLab.Optimization;
    2929using HeuristicLab.Parameters;
    30 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     30using HEAL.Attic;
    3131using HeuristicLab.PluginInfrastructure;
    3232using HeuristicLab.Problems.VehicleRouting.Interfaces;
     
    3535namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances {
    3636  [Item("MDCVRPPDTWProblemInstance", "Represents a multi depot CVRPPDTW instance.")]
    37   [StorableClass]
     37  [StorableType("A77F180E-8DE5-43E2-B9A4-313B5E2C5A06")]
    3838  public class MDCVRPPDTWProblemInstance : MDCVRPTWProblemInstance, IPickupAndDeliveryProblemInstance {
    3939    protected IValueParameter<IntArray> PickupDeliveryLocationParameter {
     
    9191
    9292    [StorableConstructor]
    93     protected MDCVRPPDTWProblemInstance(bool deserializing) : base(deserializing) { }
     93    protected MDCVRPPDTWProblemInstance(StorableConstructorFlag _) : base(_) { }
    9494
    9595    public MDCVRPPDTWProblemInstance() {
  • trunk/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/MultiDepotVRP/MDCVRP/MDCVRPTW/MDCVRPTWEvaluator.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.
     
    2525using HeuristicLab.Data;
    2626using HeuristicLab.Parameters;
    27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     27using HEAL.Attic;
    2828using HeuristicLab.Problems.VehicleRouting.Interfaces;
    2929using HeuristicLab.Problems.VehicleRouting.Variants;
     
    3131namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances {
    3232  [Item("MDCVRPTWEvaluator", "Represents a multi depot CVRPTW evaluator.")]
    33   [StorableClass]
     33  [StorableType("D3E40FC1-17FA-4C0E-AD1A-10C98ACCE27D")]
    3434  public class MDCVRPTWEvaluator : MDCVRPEvaluator {
    3535    public ILookupParameter<DoubleValue> TardinessParameter {
     
    275275
    276276    [StorableConstructor]
    277     protected MDCVRPTWEvaluator(bool deserializing) : base(deserializing) { }
     277    protected MDCVRPTWEvaluator(StorableConstructorFlag _) : base(_) { }
    278278
    279279    public MDCVRPTWEvaluator() {
  • trunk/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/MultiDepotVRP/MDCVRP/MDCVRPTW/MDCVRPTWProblemInstance.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.
     
    2828using HeuristicLab.Optimization;
    2929using HeuristicLab.Parameters;
    30 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     30using HEAL.Attic;
    3131using HeuristicLab.PluginInfrastructure;
    3232using HeuristicLab.Problems.VehicleRouting.Interfaces;
     
    3535namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances {
    3636  [Item("MDCVRPTWProblemInstance", "Represents a multi depot CVRPTW instance.")]
    37   [StorableClass]
     37  [StorableType("ADC41AA7-EFA6-46FB-BBA7-DC08AE0A26F0")]
    3838  public class MDCVRPTWProblemInstance : MDCVRPProblemInstance, ITimeWindowedProblemInstance {
    3939    protected IValueParameter<DoubleArray> ReadyTimeParameter {
     
    107107
    108108    [StorableConstructor]
    109     protected MDCVRPTWProblemInstance(bool deserializing) : base(deserializing) { }
     109    protected MDCVRPTWProblemInstance(StorableConstructorFlag _) : base(_) { }
    110110
    111111    public MDCVRPTWProblemInstance() {
  • trunk/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/MultiDepotVRP/MultiDepotVRPEvaluator.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.
     
    2222using HeuristicLab.Common;
    2323using HeuristicLab.Core;
    24 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     24using HEAL.Attic;
    2525using HeuristicLab.Problems.VehicleRouting.Interfaces;
    2626
     
    2828namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances {
    2929  [Item("SingleDepotVRPEvaluator", "Represents a single depot VRP evaluator.")]
    30   [StorableClass]
     30  [StorableType("AFC33483-2E8A-4469-8216-1F4FEE0AEB51")]
    3131  public class MultiDepotVRPEvaluator : VRPEvaluator {
    3232    protected override void EvaluateTour(VRPEvaluation eval, IVRPProblemInstance instance, Tour tour, IVRPEncoding solution) {
     
    8080
    8181    [StorableConstructor]
    82     protected MultiDepotVRPEvaluator(bool deserializing) : base(deserializing) { }
     82    protected MultiDepotVRPEvaluator(StorableConstructorFlag _) : base(_) { }
    8383
    8484    public MultiDepotVRPEvaluator() {
  • trunk/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/MultiDepotVRP/MultiDepotVRPProblemInstance.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.
     
    2828using HeuristicLab.Optimization;
    2929using HeuristicLab.Parameters;
    30 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     30using HEAL.Attic;
    3131using HeuristicLab.PluginInfrastructure;
    3232using HeuristicLab.Problems.VehicleRouting.Interfaces;
     
    3535namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances {
    3636  [Item("MultiDepotVRPProblemInstance", "Represents a multi depot VRP instance.")]
    37   [StorableClass]
     37  [StorableType("20788CA4-8AA0-4A57-8118-0D7C3FEF1AA4")]
    3838  public class MultiDepotVRPProblemInstance : VRPProblemInstance, IMultiDepotProblemInstance {
    3939    protected IValueParameter<IntValue> DepotsParameter {
     
    174174
    175175    [StorableConstructor]
    176     protected MultiDepotVRPProblemInstance(bool deserializing) : base(deserializing) { }
     176    protected MultiDepotVRPProblemInstance(StorableConstructorFlag _) : base(_) { }
    177177    protected MultiDepotVRPProblemInstance(MultiDepotVRPProblemInstance original, Cloner cloner)
    178178      : base(original, cloner) {
  • trunk/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/CVRP/CVRPEvaluation.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.
  • trunk/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/CVRP/CVRPEvaluator.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.
     
    2424using HeuristicLab.Data;
    2525using HeuristicLab.Parameters;
    26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     26using HEAL.Attic;
    2727using HeuristicLab.Problems.VehicleRouting.Interfaces;
    2828using HeuristicLab.Problems.VehicleRouting.Variants;
     
    3030namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances {
    3131  [Item("CVRPEvaluator", "Represents a single depot CVRP evaluator.")]
    32   [StorableClass]
     32  [StorableType("7253D8EC-5F91-4E5F-99E0-45AF10AEA9AF")]
    3333  public class CVRPEvaluator : VRPEvaluator {
    3434    public ILookupParameter<DoubleValue> OverloadParameter {
     
    140140
    141141    [StorableConstructor]
    142     protected CVRPEvaluator(bool deserializing) : base(deserializing) { }
     142    protected CVRPEvaluator(StorableConstructorFlag _) : base(_) { }
    143143
    144144    public CVRPEvaluator() {
  • trunk/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/CVRP/CVRPProblemInstance.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.
     
    2828using HeuristicLab.Optimization;
    2929using HeuristicLab.Parameters;
    30 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     30using HEAL.Attic;
    3131using HeuristicLab.PluginInfrastructure;
    3232using HeuristicLab.Problems.VehicleRouting.Interfaces;
     
    3535namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances {
    3636  [Item("CVRPProblemInstance", "Represents a single depot CVRP instance.")]
    37   [StorableClass]
     37  [StorableType("CBE1D39B-9BBE-4119-801B-32739D1E8DEE")]
    3838  public class CVRPProblemInstance : SingleDepotVRPProblemInstance, IHomogenousCapacitatedProblemInstance {
    3939    protected IValueParameter<DoubleValue> CapacityParameter {
     
    8585
    8686    [StorableConstructor]
    87     protected CVRPProblemInstance(bool deserializing) : base(deserializing) { }
     87    protected CVRPProblemInstance(StorableConstructorFlag _) : base(_) { }
    8888
    8989    public CVRPProblemInstance() {
  • trunk/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/CVRP/CVRPTW/CVRPPDTW/CVRPPDTWEvaluation.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.
  • trunk/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/CVRP/CVRPTW/CVRPPDTW/CVRPPDTWEvaluator.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.Data;
    2727using HeuristicLab.Parameters;
    28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HEAL.Attic;
    2929using HeuristicLab.Problems.VehicleRouting.Interfaces;
    3030using HeuristicLab.Problems.VehicleRouting.Variants;
     
    3232namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances {
    3333  [Item("CVRPPDTWEvaluator", "Represents a single depot CVRPPDTW evaluator.")]
    34   [StorableClass]
     34  [StorableType("6324F32C-727E-4593-BB21-4625755F844A")]
    3535  public class CVRPPDTWEvaluator : CVRPTWEvaluator {
    3636    public ILookupParameter<IntValue> PickupViolationsParameter {
     
    306306
    307307    [StorableConstructor]
    308     protected CVRPPDTWEvaluator(bool deserializing) : base(deserializing) { }
     308    protected CVRPPDTWEvaluator(StorableConstructorFlag _) : base(_) { }
    309309
    310310    public CVRPPDTWEvaluator() {
  • trunk/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/CVRP/CVRPTW/CVRPPDTW/CVRPPDTWProblemInstance.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.
     
    2828using HeuristicLab.Optimization;
    2929using HeuristicLab.Parameters;
    30 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     30using HEAL.Attic;
    3131using HeuristicLab.PluginInfrastructure;
    3232using HeuristicLab.Problems.VehicleRouting.Interfaces;
     
    3535namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances {
    3636  [Item("CVRPPDTWProblemInstance", "Represents a single depot CVRPPDTW instance.")]
    37   [StorableClass]
     37  [StorableType("6DC3F907-9CDC-4CDA-8C84-AC9ED248DB3B")]
    3838  public class CVRPPDTWProblemInstance : CVRPTWProblemInstance, IPickupAndDeliveryProblemInstance {
    3939    protected IValueParameter<IntArray> PickupDeliveryLocationParameter {
     
    9191
    9292    [StorableConstructor]
    93     protected CVRPPDTWProblemInstance(bool deserializing) : base(deserializing) { }
     93    protected CVRPPDTWProblemInstance(StorableConstructorFlag _) : base(_) { }
    9494
    9595    public CVRPPDTWProblemInstance() {
  • trunk/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/CVRP/CVRPTW/CVRPTWEvaluation.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.
  • trunk/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/CVRP/CVRPTW/CVRPTWEvaluator.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.
     
    2525using HeuristicLab.Data;
    2626using HeuristicLab.Parameters;
    27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     27using HEAL.Attic;
    2828using HeuristicLab.Problems.VehicleRouting.Interfaces;
    2929using HeuristicLab.Problems.VehicleRouting.Variants;
     
    3131namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances {
    3232  [Item("CVRPTWEvaluator", "Represents a single depot CVRPTW evaluator.")]
    33   [StorableClass]
     33  [StorableType("BB258008-7ECC-488A-BB2A-B38AE0023CFD")]
    3434  public class CVRPTWEvaluator : CVRPEvaluator {
    3535    public ILookupParameter<DoubleValue> TardinessParameter {
     
    259259
    260260    [StorableConstructor]
    261     protected CVRPTWEvaluator(bool deserializing) : base(deserializing) { }
     261    protected CVRPTWEvaluator(StorableConstructorFlag _) : base(_) { }
    262262
    263263    public CVRPTWEvaluator() {
  • trunk/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/CVRP/CVRPTW/CVRPTWProblemInstance.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.
     
    2828using HeuristicLab.Optimization;
    2929using HeuristicLab.Parameters;
    30 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     30using HEAL.Attic;
    3131using HeuristicLab.PluginInfrastructure;
    3232using HeuristicLab.Problems.VehicleRouting.Interfaces;
     
    3535namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances {
    3636  [Item("CVRPTWProblemInstance", "Represents a single depot CVRPTW instance.")]
    37   [StorableClass]
     37  [StorableType("2138BE6C-058E-4003-8578-55E8DE3706C7")]
    3838  public class CVRPTWProblemInstance : CVRPProblemInstance, ITimeWindowedProblemInstance {
    3939    protected IValueParameter<DoubleArray> ReadyTimeParameter {
     
    107107
    108108    [StorableConstructor]
    109     protected CVRPTWProblemInstance(bool deserializing) : base(deserializing) { }
     109    protected CVRPTWProblemInstance(StorableConstructorFlag _) : base(_) { }
    110110
    111111    public CVRPTWProblemInstance() {
  • trunk/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/SingleDepotVRPEvaluator.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.
     
    2222using HeuristicLab.Common;
    2323using HeuristicLab.Core;
    24 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     24using HEAL.Attic;
    2525using HeuristicLab.Problems.VehicleRouting.Interfaces;
    2626
     
    2828namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances {
    2929  [Item("SingleDepotVRPEvaluator", "Represents a single depot VRP evaluator.")]
    30   [StorableClass]
     30  [StorableType("1E0DECD9-54BF-4F69-A743-228C481749A0")]
    3131  public class SingleDepotVRPEvaluator : VRPEvaluator {
    3232    protected override void EvaluateTour(VRPEvaluation eval, IVRPProblemInstance instance, Tour tour, IVRPEncoding solution) {
     
    8484
    8585    [StorableConstructor]
    86     protected SingleDepotVRPEvaluator(bool deserializing) : base(deserializing) { }
     86    protected SingleDepotVRPEvaluator(StorableConstructorFlag _) : base(_) { }
    8787
    8888    public SingleDepotVRPEvaluator() {
  • trunk/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/SingleDepotVRPProblemInstance.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.Data;
    2727using HeuristicLab.Optimization;
    28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HEAL.Attic;
    2929using HeuristicLab.PluginInfrastructure;
    3030using HeuristicLab.Problems.VehicleRouting.Interfaces;
     
    3333namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances {
    3434  [Item("SingleDepotVRPProblemInstance", "Represents a single depot VRP instance.")]
    35   [StorableClass]
     35  [StorableType("A45435DD-F615-45C6-8456-5A49EE5D3C8E")]
    3636  public class SingleDepotVRPProblemInstance : VRPProblemInstance, ISingleDepotProblemInstance {
    3737    protected override IEnumerable<IOperator> GetOperators() {
     
    6464
    6565    [StorableConstructor]
    66     protected SingleDepotVRPProblemInstance(bool deserializing) : base(deserializing) { }
     66    protected SingleDepotVRPProblemInstance(StorableConstructorFlag _) : base(_) { }
    6767
    6868    public SingleDepotVRPProblemInstance() {
  • trunk/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/VRPEvaluation.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.
  • trunk/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/VRPEvaluator.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.
     
    2424using HeuristicLab.Data;
    2525using HeuristicLab.Parameters;
    26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     26using HEAL.Attic;
    2727using HeuristicLab.Problems.VehicleRouting.Encodings;
    2828using HeuristicLab.Problems.VehicleRouting.Interfaces;
     
    3030namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances {
    3131  [Item("VRPEvaluator", "Represents a VRP evaluator.")]
    32   [StorableClass]
     32  [StorableType("164315D4-BCCF-4A79-B75B-11A49C56C5E1")]
    3333  public abstract class VRPEvaluator : VRPOperator, IVRPEvaluator {
    3434    public ILookupParameter<IVRPEncoding> VRPToursParameter {
     
    5454
    5555    [StorableConstructor]
    56     protected VRPEvaluator(bool deserializing) : base(deserializing) { }
     56    protected VRPEvaluator(StorableConstructorFlag _) : base(_) { }
    5757
    5858    public VRPEvaluator() {
  • trunk/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/VRPProblemInstance.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.
     
    2727using HeuristicLab.Data;
    2828using HeuristicLab.Parameters;
    29 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     29using HEAL.Attic;
    3030using HeuristicLab.Problems.VehicleRouting.Encodings.General;
    3131using HeuristicLab.Problems.VehicleRouting.Interfaces;
     
    3333namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances {
    3434  [Item("VRPProblemInstance", "Represents a VRP instance.")]
    35   [StorableClass]
     35  [StorableType("9A6CCE89-A4B6-4FA3-A150-181FC315B713")]
    3636  public abstract class VRPProblemInstance : ParameterizedNamedItem, IVRPProblemInstance, IStatefulItem {
    3737    IVRPEvaluator moveEvaluator;
     
    250250
    251251    [StorableConstructor]
    252     protected VRPProblemInstance(bool deserializing) : base(deserializing) { }
     252    protected VRPProblemInstance(StorableConstructorFlag _) : base(_) { }
    253253
    254254    public VRPProblemInstance()
Note: See TracChangeset for help on using the changeset viewer.