Changeset 6436 for trunk/sources/HeuristicLab.Algorithms.GeneticAlgorithm
- Timestamp:
- 06/16/11 15:49:36 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/GeneticAlgorithm.cs
r6051 r6436 33 33 using HeuristicLab.PluginInfrastructure; 34 34 using HeuristicLab.Random; 35 using System.Collections.Generic; 35 36 36 37 namespace HeuristicLab.Algorithms.GeneticAlgorithm { … … 104 105 set { SelectorParameter.Value = value; } 105 106 } 107 public IEnumerable<ISelector> ValidSelectors { 108 get { return SelectorParameter.ValidValues; } 109 } 106 110 public ICrossover Crossover { 107 111 get { return CrossoverParameter.Value; } … … 115 119 get { return MutatorParameter.Value; } 116 120 set { MutatorParameter.Value = value; } 121 } 122 public IEnumerable<IManipulator> ValidMutators { 123 get { return MutatorParameter.ValidValues; } 117 124 } 118 125 public IntValue Elites {
Note: See TracChangeset
for help on using the changeset viewer.