- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Optimization.Operators/3.3/UserDefinedManipulator.cs
r15584 r17097 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. … … 22 22 using HeuristicLab.Common; 23 23 using HeuristicLab.Core; 24 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;24 using HEAL.Attic; 25 25 26 26 namespace HeuristicLab.Optimization.Operators { 27 27 [Item("UserDefinedManipulator", "A manipulator that can be customized with operators which it will execute one after another.")] 28 [Storable Class]28 [StorableType("B64E8AF0-990A-4E4F-BE1A-1194E0A6CA4E")] 29 29 public class UserDefinedManipulator : UserDefinedOperator, IManipulator { 30 30 [StorableConstructor] 31 protected UserDefinedManipulator( bool deserializing) : base(deserializing) { }31 protected UserDefinedManipulator(StorableConstructorFlag _) : base(_) { } 32 32 protected UserDefinedManipulator(UserDefinedManipulator original, Cloner cloner) : base(original, cloner) { } 33 33 public UserDefinedManipulator() : base() { }
Note: See TracChangeset
for help on using the changeset viewer.