- Timestamp:
- 03/13/12 14:09:42 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/OffspringSelectionGeneticAlgorithm.cs
r7509 r7609 64 64 get { return (ValueParameter<IntValue>)Parameters["PopulationSize"]; } 65 65 } 66 p rivateConstrainedValueParameter<ISelector> SelectorParameter {66 public ConstrainedValueParameter<ISelector> SelectorParameter { 67 67 get { return (ConstrainedValueParameter<ISelector>)Parameters["Selector"]; } 68 68 } 69 p rivateConstrainedValueParameter<ICrossover> CrossoverParameter {69 public ConstrainedValueParameter<ICrossover> CrossoverParameter { 70 70 get { return (ConstrainedValueParameter<ICrossover>)Parameters["Crossover"]; } 71 71 } … … 73 73 get { return (ValueParameter<PercentValue>)Parameters["MutationProbability"]; } 74 74 } 75 p rivateOptionalConstrainedValueParameter<IManipulator> MutatorParameter {75 public OptionalConstrainedValueParameter<IManipulator> MutatorParameter { 76 76 get { return (OptionalConstrainedValueParameter<IManipulator>)Parameters["Mutator"]; } 77 77 } … … 91 91 get { return (ValueLookupParameter<DoubleValue>)Parameters["ComparisonFactorUpperBound"]; } 92 92 } 93 p rivateOptionalConstrainedValueParameter<IDiscreteDoubleValueModifier> ComparisonFactorModifierParameter {93 public OptionalConstrainedValueParameter<IDiscreteDoubleValueModifier> ComparisonFactorModifierParameter { 94 94 get { return (OptionalConstrainedValueParameter<IDiscreteDoubleValueModifier>)Parameters["ComparisonFactorModifier"]; } 95 95 }
Note: See TracChangeset
for help on using the changeset viewer.