Changeset 16565 for trunk/HeuristicLab.Optimization/3.3/MetaOptimizers
- Timestamp:
- 01/28/19 13:41:42 (6 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/2520_PersistenceReintegration (added) merged: 16451-16454,16462,16465-16468,16470-16472,16474,16476-16477,16479-16487,16529-16530,16539,16551-16555,16558-16559,16562-16564
- Property svn:mergeinfo changed
-
trunk/HeuristicLab.Optimization
- Property svn:mergeinfo changed
/branches/2520_PersistenceReintegration/HeuristicLab.Optimization (added) merged: 16452-16454,16462,16476,16529,16539,16558-16559
- Property svn:mergeinfo changed
-
trunk/HeuristicLab.Optimization/3.3/MetaOptimizers/BatchRun.cs
r15583 r16565 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.Core; 30 30 using HeuristicLab.Data; 31 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;31 using HEAL.Attic; 32 32 33 33 namespace HeuristicLab.Optimization { 34 [StorableType("3d385be2-5c83-43f2-a693-f984acac44f6")] 34 35 internal enum BatchRunAction { None, Prepare, Start, Pause, Stop }; 35 36 … … 39 40 [Item("Batch Run", "A run in which an optimizer is executed a given number of times.")] 40 41 [Creatable(CreatableAttribute.Categories.TestingAndAnalysis, Priority = 110)] 41 [Storable Class]42 [StorableType("E85407E0-18EC-4198-8321-9CF030FDF6D7")] 42 43 public sealed class BatchRun : NamedItem, IOptimizer, IStorableContent { 43 44 public string Filename { get; set; } … … 199 200 } 200 201 [StorableConstructor] 201 private BatchRun( bool deserializing) : base(deserializing) { }202 private BatchRun(StorableConstructorFlag _) : base(_) { } 202 203 [StorableHook(HookType.AfterDeserialization)] 203 204 private void AfterDeserialization() { -
trunk/HeuristicLab.Optimization/3.3/MetaOptimizers/Experiment.cs
r15583 r16565 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() { -
trunk/HeuristicLab.Optimization/3.3/MetaOptimizers/TimeLimitRun.cs
r16179 r16565 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. … … 31 31 using HeuristicLab.Common.Resources; 32 32 using HeuristicLab.Core; 33 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;33 using HEAL.Attic; 34 34 35 35 namespace HeuristicLab.Optimization { … … 39 39 [Item("Timelimit Run", "A run in which an optimizer is executed a certain maximum time.")] 40 40 [Creatable(CreatableAttribute.Categories.TestingAndAnalysis, Priority = 115)] 41 [Storable Class]41 [StorableType("85A1AB82-689F-4925-B888-B3886707BE88")] 42 42 public sealed class TimeLimitRun : NamedItem, IOptimizer, IStorableContent, INotifyPropertyChanged { 43 43 public string Filename { get; set; } … … 152 152 153 153 [StorableConstructor] 154 private TimeLimitRun( bool deserializing) : base(deserializing) { }154 private TimeLimitRun(StorableConstructorFlag _) : base(_) { } 155 155 private TimeLimitRun(TimeLimitRun original, Cloner cloner) 156 156 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.