- Timestamp:
- 03/03/17 11:41:43 (8 years ago)
- Location:
- branches/PersistenceOverhaul/HeuristicLab.Algorithms.SimulatedAnnealing/3.3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceOverhaul/HeuristicLab.Algorithms.SimulatedAnnealing/3.3/SimulatedAnnealing.cs
r13368 r14711 38 38 [Item("Simulated Annealing (SA)", "A simulated annealing algorithm.")] 39 39 [Creatable(CreatableAttribute.Categories.SingleSolutionAlgorithms, Priority = 140)] 40 [Storable Class("03753690-9F68-424C-A5DB-0CC84D3F1178")]40 [StorableType("03753690-9F68-424C-A5DB-0CC84D3F1178")] 41 41 public sealed class SimulatedAnnealing : HeuristicOptimizationEngineAlgorithm, IStorableContent { 42 42 public string Filename { get; set; } -
branches/PersistenceOverhaul/HeuristicLab.Algorithms.SimulatedAnnealing/3.3/SimulatedAnnealingImprovementOperator.cs
r13368 r14711 37 37 /// </summary> 38 38 [Item("SimulatedAnnealingImprovementOperator", "A simulated annealing improvement operator.")] 39 [Storable Class("0917EAA3-1F48-4A8F-A327-5F83916B63B6")]39 [StorableType("0917EAA3-1F48-4A8F-A327-5F83916B63B6")] 40 40 public sealed class SimulatedAnnealingImprovementOperator : SingleSuccessorOperator, ILocalImprovementAlgorithmOperator, IStochasticOperator, ISingleObjectiveOperator { 41 41 #region IGenericLocalImprovementOperator Properties -
branches/PersistenceOverhaul/HeuristicLab.Algorithms.SimulatedAnnealing/3.3/SimulatedAnnealingMainLoop.cs
r13368 r14711 33 33 /// </summary> 34 34 [Item("SimulatedAnnealingMainLoop", "An operator which represents the main loop of a simulated annealing algorithm.")] 35 [Storable Class("63BA7A09-33C0-43B4-9E4E-4936F87918D6")]35 [StorableType("63BA7A09-33C0-43B4-9E4E-4936F87918D6")] 36 36 public sealed class SimulatedAnnealingMainLoop : AlgorithmOperator { 37 37 #region Parameter properties
Note: See TracChangeset
for help on using the changeset viewer.