- Timestamp:
- 03/03/17 11:41:43 (8 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
r13368 r14711 40 40 [Item("Genetic Algorithm (GA)", "A genetic algorithm.")] 41 41 [Creatable(CreatableAttribute.Categories.PopulationBasedAlgorithms, Priority = 100)] 42 [Storable Class("450F1EC0-ED07-47E2-962A-B98BCAA5CC51")]42 [StorableType("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
r13368 r14711 34 34 /// </summary> 35 35 [Item("GeneticAlgorithmMainLoop", "An operator which represents the main loop of a genetic algorithm.")] 36 [Storable Class("002D77D7-0B04-4B22-A88C-52FE1DD02B91")]36 [StorableType("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
r13368 r14711 40 40 [Item("Island Genetic Algorithm (Island-GA)", "An island genetic algorithm.")] 41 41 [Creatable(CreatableAttribute.Categories.PopulationBasedAlgorithms, Priority = 110)] 42 [Storable Class("F9466376-A175-4EFC-B697-5C8A4F478C06")]42 [StorableType("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
r13368 r14711 35 35 /// </summary> 36 36 [Item("IslandGeneticAlgorithmMainLoop", "An island genetic algorithm main loop operator.")] 37 [Storable Class("EAC2539B-2FF0-4298-ABD7-9B724E59AC54")]37 [StorableType("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.