Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/14/19 15:55:34 (5 years ago)
Author:
pfleck
Message:

#2707 Adapted to HEAL.Attic changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2707_HeuristicLab.VRPEnhancements/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Creators/GeographicDistanceClusterCreator.cs

    r14645 r17011  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2016 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.Common;
    2626using HeuristicLab.Core;
    27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2827using HeuristicLab.Problems.VehicleRouting.Interfaces;
    2928using HeuristicLab.Problems.VehicleRouting.Variants;
    3029using HeuristicLab.Random;
     30using HEAL.Attic;
    3131
    3232namespace HeuristicLab.Problems.VehicleRouting.Encodings.Potvin {
    3333  [Item("GeographicDistanceClusterCreator", "Creates a VRP solution by clustering customers first with a KMeans-algorithm based on their geographic position and building tours afterwards alternatevly in a random or a greedy fashion.")]
    34   [StorableClass]
     34  [StorableType("C2E0290D-D97A-4DD7-83EC-03A309836CBC")]
    3535  public sealed class GeographicDistanceClusterCreator : ClusterCreator {
    3636
    3737    [StorableConstructor]
    38     private GeographicDistanceClusterCreator(bool deserializing) : base(deserializing) { }
     38    private GeographicDistanceClusterCreator(StorableConstructorFlag _) : base(_) { }
    3939
    4040    public GeographicDistanceClusterCreator() : base() {
Note: See TracChangeset for help on using the changeset viewer.