Changeset 16462 for branches/2520_PersistenceReintegration/HeuristicLab.Problems.PTSP/3.3/PathPTSPTour.cs
- Timestamp:
- 12/28/18 16:10:48 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2520_PersistenceReintegration/HeuristicLab.Problems.PTSP/3.3/PathPTSPTour.cs
r16453 r16462 26 26 using HeuristicLab.Data; 27 27 using HeuristicLab.Encodings.PermutationEncoding; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Fossil; 29 29 30 30 namespace HeuristicLab.Problems.PTSP { … … 33 33 /// </summary> 34 34 [Item("PathPTSPTour", "Represents a tour of a Probabilistic Traveling Salesman Problem given in path representation which can be visualized in the GUI.")] 35 [Storable Class]35 [StorableType("8C9E50C9-4364-48F1-B681-9CFFD1147EF0")] 36 36 public sealed class PathPTSPTour : Item { 37 37 public static new Image StaticItemImage { … … 93 93 94 94 [StorableConstructor] 95 private PathPTSPTour( bool deserializing) : base(deserializing) { }95 private PathPTSPTour(StorableConstructorFlag _) : base(_) { } 96 96 private PathPTSPTour(PathPTSPTour original, Cloner cloner) 97 97 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.