- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Algorithms.SimulatedAnnealing/3.3/SimulatedAnnealing.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.PluginInfrastructure; 35 35 using HeuristicLab.Random; … … 38 38 [Item("Simulated Annealing (SA)", "A simulated annealing algorithm.")] 39 39 [Creatable(CreatableAttribute.Categories.SingleSolutionAlgorithms, Priority = 140)] 40 [Storable Class]40 [StorableType("CE2B6164-C541-4E87-ABF6-FDE6CA6401BF")] 41 41 public sealed class SimulatedAnnealing : HeuristicOptimizationEngineAlgorithm, IStorableContent { 42 42 public string Filename { get; set; } … … 149 149 150 150 [StorableConstructor] 151 private SimulatedAnnealing( bool deserializing) : base(deserializing) { }151 private SimulatedAnnealing(StorableConstructorFlag _) : base(_) { } 152 152 [StorableHook(HookType.AfterDeserialization)] 153 153 private void AfterDeserialization() {
Note: See TracChangeset
for help on using the changeset viewer.