Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/28/18 16:10:48 (6 years ago)
Author:
jkarder
Message:

#2520: worked on reintegration of new persistence

  • added nuget references to HEAL.Fossil
  • added StorableType attributes to many classes
  • changed signature of StorableConstructors
  • removed some classes in old persistence
  • removed some unnecessary usings
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2520_PersistenceReintegration/HeuristicLab.Problems.PTSP/3.3/PathPTSPTour.cs

    r16453 r16462  
    2626using HeuristicLab.Data;
    2727using HeuristicLab.Encodings.PermutationEncoding;
    28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HEAL.Fossil;
    2929
    3030namespace HeuristicLab.Problems.PTSP {
     
    3333  /// </summary>
    3434  [Item("PathPTSPTour", "Represents a tour of a Probabilistic Traveling Salesman Problem given in path representation which can be visualized in the GUI.")]
    35   [StorableClass]
     35  [StorableType("8C9E50C9-4364-48F1-B681-9CFFD1147EF0")]
    3636  public sealed class PathPTSPTour : Item {
    3737    public static new Image StaticItemImage {
     
    9393
    9494    [StorableConstructor]
    95     private PathPTSPTour(bool deserializing) : base(deserializing) { }
     95    private PathPTSPTour(StorableConstructorFlag _) : base(_) { }
    9696    private PathPTSPTour(PathPTSPTour original, Cloner cloner)
    9797      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.