Changeset 16723 for branches/2521_ProblemRefactoring/HeuristicLab.Optimization/3.3/Algorithms/Algorithm.cs
- Timestamp:
- 03/28/19 16:54:20 (6 years ago)
- Location:
- branches/2521_ProblemRefactoring
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring
- Property svn:mergeinfo changed
-
branches/2521_ProblemRefactoring/HeuristicLab.Optimization
- Property svn:mergeinfo changed
-
branches/2521_ProblemRefactoring/HeuristicLab.Optimization/3.3/Algorithms/Algorithm.cs
r16692 r16723 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. … … 30 30 using HeuristicLab.Core; 31 31 using HeuristicLab.Data; 32 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;32 using HEAL.Attic; 33 33 34 34 namespace HeuristicLab.Optimization { … … 37 37 /// </summary> 38 38 [Item("Algorithm", "A base class for algorithms.")] 39 [Storable Class]39 [StorableType("7879C550-E8C2-4121-84C3-DADB06BD5C96")] 40 40 public abstract class Algorithm : ParameterizedNamedItem, IAlgorithm { 41 41 public static new Image StaticItemImage { … … 171 171 } 172 172 [StorableConstructor] 173 protected Algorithm( bool deserializing) : base(deserializing) { }173 protected Algorithm(StorableConstructorFlag _) : base(_) { } 174 174 [StorableHook(HookType.AfterDeserialization)] 175 175 private void AfterDeserialization() {
Note: See TracChangeset
for help on using the changeset viewer.