Changeset 16723 for branches/2521_ProblemRefactoring/HeuristicLab.Optimization/3.3/Algorithms/UserDefinedAlgorithm.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/UserDefinedAlgorithm.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. … … 23 23 using HeuristicLab.Common; 24 24 using HeuristicLab.Core; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Attic; 26 26 27 27 namespace HeuristicLab.Optimization { … … 31 31 [Item("User-Defined Algorithm", "An algorithm which can be defined by the user.")] 32 32 [Creatable(CreatableAttribute.Categories.Algorithms, Priority = 100)] 33 [Storable Class]33 [StorableType("8D1C0ED9-F732-4DE3-8F6C-125DFF9E8D5E")] 34 34 public sealed class UserDefinedAlgorithm : EngineAlgorithm, IParameterizedItem, IStorableContent { 35 35 public string Filename { get; set; } … … 71 71 public UserDefinedAlgorithm(string name, string description) : base(name, description) { } 72 72 [StorableConstructor] 73 private UserDefinedAlgorithm( bool deserializing) : base(deserializing) { }73 private UserDefinedAlgorithm(StorableConstructorFlag _) : base(_) { } 74 74 private UserDefinedAlgorithm(UserDefinedAlgorithm original, Cloner cloner) 75 75 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.