- Timestamp:
- 07/07/19 23:40:10 (4 years ago)
- Location:
- stable
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Algorithms.LocalSearch/3.3/LocalSearch.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. … … 31 31 using HeuristicLab.Optimization.Operators; 32 32 using HeuristicLab.Parameters; 33 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;33 using HEAL.Attic; 34 34 using HeuristicLab.Random; 35 35 … … 37 37 [Item("Local Search (LS)", "A local search algorithm.")] 38 38 [Creatable(CreatableAttribute.Categories.SingleSolutionAlgorithms, Priority = 100)] 39 [Storable Class]39 [StorableType("399F7E6A-4111-4F91-BB99-EFE721789E27")] 40 40 public sealed class LocalSearch : HeuristicOptimizationEngineAlgorithm, IStorableContent { 41 41 public string Filename { get; set; } … … 125 125 126 126 [StorableConstructor] 127 private LocalSearch( bool deserializing) : base(deserializing) { }127 private LocalSearch(StorableConstructorFlag _) : base(_) { } 128 128 [StorableHook(HookType.AfterDeserialization)] 129 129 private void AfterDeserialization() {
Note: See TracChangeset
for help on using the changeset viewer.