- Timestamp:
- 07/07/19 23:40:10 (4 years ago)
- Location:
- stable
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Algorithms.ScatterSearch/3.3/OffspringProcessor.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. … … 24 24 using HeuristicLab.Operators; 25 25 using HeuristicLab.Parameters; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Attic; 27 27 28 28 namespace HeuristicLab.Algorithms.ScatterSearch { … … 31 31 /// </summary> 32 32 [Item("OffspringProcessor", "An operator that creates a subscope with subscopes for every variable in the current scope.")] 33 [Storable Class]33 [StorableType("A89D522A-CAFF-4899-A24D-5EB463EEB03F")] 34 34 public sealed class OffspringProcessor : SingleSuccessorOperator { 35 35 #region Parameter properties … … 46 46 47 47 [StorableConstructor] 48 private OffspringProcessor( bool deserializing) : base(deserializing) { }48 private OffspringProcessor(StorableConstructorFlag _) : base(_) { } 49 49 private OffspringProcessor(OffspringProcessor original, Cloner cloner) : base(original, cloner) { } 50 50 public OffspringProcessor()
Note: See TracChangeset
for help on using the changeset viewer.