- Timestamp:
- 11/24/15 17:08:13 (9 years ago)
- Location:
- branches/PersistenceOverhaul/HeuristicLab.Algorithms.GeneticAlgorithm/3.3
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceOverhaul/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/GeneticAlgorithm.cs
r13173 r13368 40 40 [Item("Genetic Algorithm (GA)", "A genetic algorithm.")] 41 41 [Creatable(CreatableAttribute.Categories.PopulationBasedAlgorithms, Priority = 100)] 42 [StorableClass ]42 [StorableClass("450F1EC0-ED07-47E2-962A-B98BCAA5CC51")] 43 43 public sealed class GeneticAlgorithm : HeuristicOptimizationEngineAlgorithm, IStorableContent { 44 44 public string Filename { get; set; } -
branches/PersistenceOverhaul/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/GeneticAlgorithmMainLoop.cs
r12012 r13368 34 34 /// </summary> 35 35 [Item("GeneticAlgorithmMainLoop", "An operator which represents the main loop of a genetic algorithm.")] 36 [StorableClass ]36 [StorableClass("002D77D7-0B04-4B22-A88C-52FE1DD02B91")] 37 37 public sealed class GeneticAlgorithmMainLoop : AlgorithmOperator { 38 38 #region Parameter properties -
branches/PersistenceOverhaul/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/IslandGeneticAlgorithm.cs
r13173 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 40 40 [Item("Island Genetic Algorithm (Island-GA)", "An island genetic algorithm.")] 41 41 [Creatable(CreatableAttribute.Categories.PopulationBasedAlgorithms, Priority = 110)] 42 [StorableClass ]42 [StorableClass("F9466376-A175-4EFC-B697-5C8A4F478C06")] 43 43 public sealed class IslandGeneticAlgorithm : HeuristicOptimizationEngineAlgorithm, IStorableContent { 44 44 public string Filename { get; set; } -
branches/PersistenceOverhaul/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/IslandGeneticAlgorithmMainLoop.cs
r12012 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 35 35 /// </summary> 36 36 [Item("IslandGeneticAlgorithmMainLoop", "An island genetic algorithm main loop operator.")] 37 [StorableClass ]37 [StorableClass("EAC2539B-2FF0-4298-ABD7-9B724E59AC54")] 38 38 public sealed class IslandGeneticAlgorithmMainLoop : AlgorithmOperator { 39 39 #region Parameter Properties
Note: See TracChangeset
for help on using the changeset viewer.