Changeset 14711 for branches/PersistenceOverhaul/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm
- Timestamp:
- 03/03/17 11:41:43 (8 years ago)
- Location:
- branches/PersistenceOverhaul/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceOverhaul/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/IslandOffspringSelectionGeneticAlgorithm.cs
r13368 r14711 40 40 [Item("Island Offspring Selection Genetic Algorithm (Island-OSGA)", "An island offspring selection genetic algorithm.")] 41 41 [Creatable(CreatableAttribute.Categories.PopulationBasedAlgorithms, Priority = 130)] 42 [Storable Class("4D3CACDA-449F-4B2E-BE49-26FEF4F29E71")]42 [StorableType("4D3CACDA-449F-4B2E-BE49-26FEF4F29E71")] 43 43 public sealed class IslandOffspringSelectionGeneticAlgorithm : HeuristicOptimizationEngineAlgorithm, IStorableContent { 44 44 public string Filename { get; set; } -
branches/PersistenceOverhaul/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/IslandOffspringSelectionGeneticAlgorithmMainLoop.cs
r13368 r14711 34 34 /// </summary> 35 35 [Item("IslandOffspringSelectionGeneticAlgorithmMainLoop", "An island offspring selection genetic algorithm main loop operator.")] 36 [Storable Class("28FD5BF7-981E-4530-9500-AB9FE334C788")]36 [StorableType("28FD5BF7-981E-4530-9500-AB9FE334C788")] 37 37 public sealed class IslandOffspringSelectionGeneticAlgorithmMainLoop : AlgorithmOperator { 38 38 #region Parameter Properties -
branches/PersistenceOverhaul/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/OffspringSelectionGeneticAlgorithm.cs
r13368 r14711 40 40 [Item("Offspring Selection Genetic Algorithm (OSGA)", "An offspring selection genetic algorithm (Affenzeller, M. et al. 2009. Genetic Algorithms and Genetic Programming - Modern Concepts and Practical Applications. CRC Press).")] 41 41 [Creatable(CreatableAttribute.Categories.PopulationBasedAlgorithms, Priority = 120)] 42 [Storable Class("FC317B47-361A-471A-B6D4-37382DCCA6DF")]42 [StorableType("FC317B47-361A-471A-B6D4-37382DCCA6DF")] 43 43 public sealed class OffspringSelectionGeneticAlgorithm : HeuristicOptimizationEngineAlgorithm, IStorableContent { 44 44 public string Filename { get; set; } -
branches/PersistenceOverhaul/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/OffspringSelectionGeneticAlgorithmMainLoop.cs
r13368 r14711 33 33 /// </summary> 34 34 [Item("OffspringSelectionGeneticAlgorithmMainLoop", "An operator which represents the main loop of an offspring selection genetic algorithm.")] 35 [Storable Class("2288F854-9419-4CFF-A9AE-8FEC69ED8BDF")]35 [StorableType("2288F854-9419-4CFF-A9AE-8FEC69ED8BDF")] 36 36 public sealed class OffspringSelectionGeneticAlgorithmMainLoop : AlgorithmOperator { 37 37 #region Parameter properties -
branches/PersistenceOverhaul/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/OffspringSelectionGeneticAlgorithmMainOperator.cs
r13368 r14711 34 34 /// </summary> 35 35 [Item("OffspringSelectionGeneticAlgorithmMainOperator", "An operator that represents the core of an offspring selection genetic algorithm.")] 36 [Storable Class("B12423AC-7161-4371-879D-03445E7FDF71")]36 [StorableType("B12423AC-7161-4371-879D-03445E7FDF71")] 37 37 public sealed class OffspringSelectionGeneticAlgorithmMainOperator : AlgorithmOperator { 38 38 #region Parameter properties -
branches/PersistenceOverhaul/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/SASEGASA.cs
r13368 r14711 40 40 [Item("SASEGASA", "The self-adaptive segregative genetic algorithm with simulated annealing aspects (Affenzeller, M. et al. 2009. Genetic Algorithms and Genetic Programming - Modern Concepts and Practical Applications. CRC Press).")] 41 41 [Creatable(CreatableAttribute.Categories.PopulationBasedAlgorithms, Priority = 150)] 42 [Storable Class("03FA1BBA-96BA-484D-8BC5-A4E57C2D3BC8")]42 [StorableType("03FA1BBA-96BA-484D-8BC5-A4E57C2D3BC8")] 43 43 public sealed class SASEGASA : HeuristicOptimizationEngineAlgorithm, IStorableContent { 44 44 public string Filename { get; set; } -
branches/PersistenceOverhaul/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/SASEGASAMainLoop.cs
r13368 r14711 34 34 /// </summary> 35 35 [Item("SASEGASAMainLoop", "A SASEGASA main loop operator.")] 36 [Storable Class("0BBD3047-1B79-4B66-8479-A1018759A5B6")]36 [StorableType("0BBD3047-1B79-4B66-8479-A1018759A5B6")] 37 37 public sealed class SASEGASAMainLoop : AlgorithmOperator { 38 38 #region Parameter Properties -
branches/PersistenceOverhaul/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/SuccessfulOffspringAnalysis/SuccessfulOffspringAnalyzer.cs
r13368 r14711 37 37 /// </summary> 38 38 [Item("SuccessfulOffspringAnalyzer", "An operator for analyzing certain properties in the successful offspring. The properties to be analyzed can be specified in the CollectedValues parameter.")] 39 [Storable Class("84FED344-7743-4C85-811F-046CFB709E06")]39 [StorableType("84FED344-7743-4C85-811F-046CFB709E06")] 40 40 public sealed class SuccessfulOffspringAnalyzer : SingleSuccessorOperator, IAnalyzer { 41 41 public bool EnabledByDefault {
Note: See TracChangeset
for help on using the changeset viewer.