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

Legend:

Unmodified
Added
Removed
  • stable

  • stable/HeuristicLab.Problems.PTSP/3.3/PTSP.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.
     
    3030using HeuristicLab.Optimization.Operators;
    3131using HeuristicLab.Parameters;
    32 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     32using HEAL.Attic;
    3333using HeuristicLab.Problems.Instances;
    3434
    3535namespace HeuristicLab.Problems.PTSP {
    3636  [Item("Probabilistic Traveling Salesman Problem (PTSP)", "Represents a Probabilistic Traveling Salesman Problem.")]
    37   [StorableClass]
     37  [StorableType("4CB8ACF3-C3D4-4CC6-BB1F-986BDE16B30A")]
    3838  public abstract class ProbabilisticTravelingSalesmanProblem : SingleObjectiveBasicProblem<PermutationEncoding>,
    3939  IProblemInstanceConsumer<PTSPData> {
     
    9696
    9797    [StorableConstructor]
    98     protected ProbabilisticTravelingSalesmanProblem(bool deserializing) : base(deserializing) { }
     98    protected ProbabilisticTravelingSalesmanProblem(StorableConstructorFlag _) : base(_) { }
    9999    protected ProbabilisticTravelingSalesmanProblem(ProbabilisticTravelingSalesmanProblem original, Cloner cloner)
    100100      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.