Changeset 16956 for branches/2457_ExpertSystem/HeuristicLab.Optimization/3.3/MetaOptimizers/Experiment.cs
- Timestamp:
- 05/15/19 13:36:51 (5 years ago)
- Location:
- branches/2457_ExpertSystem/HeuristicLab.Optimization
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2457_ExpertSystem/HeuristicLab.Optimization
- Property svn:mergeinfo changed
-
branches/2457_ExpertSystem/HeuristicLab.Optimization/3.3/MetaOptimizers/Experiment.cs
r16075 r16956 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. … … 29 29 using HeuristicLab.Common; 30 30 using HeuristicLab.Core; 31 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;31 using HEAL.Attic; 32 32 33 33 namespace HeuristicLab.Optimization { … … 37 37 [Item("Experiment", "An experiment which contains multiple algorithms, batch runs or other experiments.")] 38 38 [Creatable(CreatableAttribute.Categories.TestingAndAnalysis, Priority = 100)] 39 [Storable Class]39 [StorableType("A8A4536B-54C1-4A17-AB58-A6006F7F394B")] 40 40 public sealed class Experiment : NamedItem, IOptimizer, IStorableContent { 41 41 public string Filename { get; set; } … … 161 161 } 162 162 [StorableConstructor] 163 private Experiment( bool deserializing) : base(deserializing) { }163 private Experiment(StorableConstructorFlag _) : base(_) { } 164 164 [StorableHook(HookType.AfterDeserialization)] 165 165 private void AfterDeserialization() {
Note: See TracChangeset
for help on using the changeset viewer.