- Timestamp:
- 03/31/19 14:40:15 (6 years ago)
- Location:
- branches/1614_GeneralizedQAP/HeuristicLab.Optimization
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1614_GeneralizedQAP/HeuristicLab.Optimization
- Property svn:mergeinfo changed
-
branches/1614_GeneralizedQAP/HeuristicLab.Optimization/3.3/RunCollection.cs
r15605 r16728 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 28 28 using HeuristicLab.Core; 29 29 using HeuristicLab.Data; 30 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;30 using HEAL.Attic; 31 31 32 32 namespace HeuristicLab.Optimization { 33 33 [Item("Run Collection", "Represents a collection of runs.")] 34 34 [Creatable(CreatableAttribute.Categories.TestingAndAnalysis, Priority = 120)] 35 [Storable Class]35 [StorableType("6A9E959B-62DB-4998-BFC6-BF3BAE66BED4")] 36 36 public class RunCollection : ItemCollection<IRun>, IStringConvertibleMatrix, IStorableContent { 37 37 public string Filename { get; set; } 38 38 39 39 [StorableConstructor] 40 protected RunCollection(bool deserializing) 41 : base(deserializing) { 40 protected RunCollection(StorableConstructorFlag _) : base(_) { 42 41 updateOfRunsInProgress = false; 43 42 }
Note: See TracChangeset
for help on using the changeset viewer.