- 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/UnidirectionalRingMigrator.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. … … 26 26 using HeuristicLab.Operators; 27 27 using HeuristicLab.Parameters; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 29 29 30 30 namespace HeuristicLab.Optimization.Operators { … … 33 33 /// </summary> 34 34 [Item("UnidirectionalRingMigrator", "Migrates the selected sub scopes in each subscope in an unidirectional ring.")] 35 [Storable Class]35 [StorableType("A6642E0A-2FA1-49F3-9BA8-94EA370FE2CF")] 36 36 public class UnidirectionalRingMigrator : SingleSuccessorOperator, IMigrator { 37 37 public IValueLookupParameter<BoolValue> ClockwiseMigrationParameter { … … 40 40 41 41 [StorableConstructor] 42 protected UnidirectionalRingMigrator( bool deserializing) : base(deserializing) { }42 protected UnidirectionalRingMigrator(StorableConstructorFlag _) : base(_) { } 43 43 protected UnidirectionalRingMigrator(UnidirectionalRingMigrator original, Cloner cloner) : base(original, cloner) { } 44 44
Note: See TracChangeset
for help on using the changeset viewer.