- 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/ScatterSearchMainLoop.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. … … 27 27 using HeuristicLab.Optimization.Operators; 28 28 using HeuristicLab.Parameters; 29 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;29 using HEAL.Attic; 30 30 using HeuristicLab.Selection; 31 31 … … 35 35 /// </summary> 36 36 [Item("ScatterSearchMainLoop", "An operator which represents a scatter search.")] 37 [Storable Class]37 [StorableType("CDEB69B9-A0D9-4E84-80FD-347E16A1A8FE")] 38 38 public sealed class ScatterSearchMainLoop : AlgorithmOperator { 39 39 #region Parameter properties … … 170 170 171 171 [StorableConstructor] 172 private ScatterSearchMainLoop( bool deserializing) : base(deserializing) { }172 private ScatterSearchMainLoop(StorableConstructorFlag _) : base(_) { } 173 173 private ScatterSearchMainLoop(ScatterSearchMainLoop original, Cloner cloner) : base(original, cloner) { } 174 174 public ScatterSearchMainLoop() : base() { Initialize(); }
Note: See TracChangeset
for help on using the changeset viewer.