Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/07/19 23:40:10 (5 years ago)
Author:
mkommend
Message:

#2520: Merged 16565 - 16579 into stable.

Location:
stable
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • stable

  • stable/HeuristicLab.Problems.VehicleRouting

  • stable/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/MultiDepotVRP/MDCVRP/MDCVRPTW/MDCVRPPDTW/MDCVRPPDTWEvaluator.cs

    r15584 r17097  
    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() {
  • stable/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/MultiDepotVRP/MDCVRP/MDCVRPTW/MDCVRPPDTW/MDCVRPPDTWProblemInstance.cs

    r15584 r17097  
    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() {
  • stable/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/MultiDepotVRP/MDCVRP/MDCVRPTW/MDCVRPTWEvaluator.cs

    r15584 r17097  
    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() {
  • stable/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/MultiDepotVRP/MDCVRP/MDCVRPTW/MDCVRPTWProblemInstance.cs

    r15584 r17097  
    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() {
Note: See TracChangeset for help on using the changeset viewer.