- Timestamp:
- 12/28/18 16:10:48 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2520_PersistenceReintegration/HeuristicLab.Optimization/3.3/Run.cs
r16453 r16462 27 27 using HeuristicLab.Common; 28 28 using HeuristicLab.Core; 29 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;29 using HEAL.Fossil; 30 30 31 31 namespace HeuristicLab.Optimization { … … 34 34 /// </summary> 35 35 [Item("Run", "The parameters and results of an algorithm run.")] 36 [Storable Class]36 [StorableType("C06974F6-2516-492F-9AE9-517AED845260")] 37 37 public sealed class Run : NamedItem, IRun, IStorableContent { 38 38 public string Filename { get; set; } 39 39 40 40 [StorableConstructor] 41 private Run( bool deserializing) : base(deserializing) { }41 private Run(StorableConstructorFlag _) : base(_) { } 42 42 private Run(Run original, Cloner cloner) 43 43 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.