Changeset 6569 for branches/QAPAlgorithms/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/IslandGeneticAlgorithm.cs
- Timestamp:
- 07/17/11 22:51:11 (13 years ago)
- Location:
- branches/QAPAlgorithms
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/QAPAlgorithms
- Property svn:ignore
-
old new 12 12 *.psess 13 13 *.vsp 14 *.docstates
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
branches/QAPAlgorithms/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/IslandGeneticAlgorithm.cs
r6051 r6569 70 70 get { return (ValueParameter<PercentValue>)Parameters["MigrationRate"]; } 71 71 } 72 p rivateConstrainedValueParameter<IMigrator> MigratorParameter {72 public ConstrainedValueParameter<IMigrator> MigratorParameter { 73 73 get { return (ConstrainedValueParameter<IMigrator>)Parameters["Migrator"]; } 74 74 } 75 p rivateConstrainedValueParameter<ISelector> EmigrantsSelectorParameter {75 public ConstrainedValueParameter<ISelector> EmigrantsSelectorParameter { 76 76 get { return (ConstrainedValueParameter<ISelector>)Parameters["EmigrantsSelector"]; } 77 77 } 78 p rivateConstrainedValueParameter<IReplacer> ImmigrationReplacerParameter {78 public ConstrainedValueParameter<IReplacer> ImmigrationReplacerParameter { 79 79 get { return (ConstrainedValueParameter<IReplacer>)Parameters["ImmigrationReplacer"]; } 80 80 } … … 85 85 get { return (ValueParameter<IntValue>)Parameters["MaximumGenerations"]; } 86 86 } 87 p rivateConstrainedValueParameter<ISelector> SelectorParameter {87 public ConstrainedValueParameter<ISelector> SelectorParameter { 88 88 get { return (ConstrainedValueParameter<ISelector>)Parameters["Selector"]; } 89 89 } 90 p rivateConstrainedValueParameter<ICrossover> CrossoverParameter {90 public ConstrainedValueParameter<ICrossover> CrossoverParameter { 91 91 get { return (ConstrainedValueParameter<ICrossover>)Parameters["Crossover"]; } 92 92 } … … 94 94 get { return (ValueParameter<PercentValue>)Parameters["MutationProbability"]; } 95 95 } 96 p rivateOptionalConstrainedValueParameter<IManipulator> MutatorParameter {96 public OptionalConstrainedValueParameter<IManipulator> MutatorParameter { 97 97 get { return (OptionalConstrainedValueParameter<IManipulator>)Parameters["Mutator"]; } 98 98 }
Note: See TracChangeset
for help on using the changeset viewer.