Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/13/12 14:09:42 (12 years ago)
Author:
gkronber
Message:

#1797 changed visibility of constrained value parameters in the OSGA to public.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/OffspringSelectionGeneticAlgorithm.cs

    r7509 r7609  
    6464      get { return (ValueParameter<IntValue>)Parameters["PopulationSize"]; }
    6565    }
    66     private ConstrainedValueParameter<ISelector> SelectorParameter {
     66    public ConstrainedValueParameter<ISelector> SelectorParameter {
    6767      get { return (ConstrainedValueParameter<ISelector>)Parameters["Selector"]; }
    6868    }
    69     private ConstrainedValueParameter<ICrossover> CrossoverParameter {
     69    public ConstrainedValueParameter<ICrossover> CrossoverParameter {
    7070      get { return (ConstrainedValueParameter<ICrossover>)Parameters["Crossover"]; }
    7171    }
     
    7373      get { return (ValueParameter<PercentValue>)Parameters["MutationProbability"]; }
    7474    }
    75     private OptionalConstrainedValueParameter<IManipulator> MutatorParameter {
     75    public OptionalConstrainedValueParameter<IManipulator> MutatorParameter {
    7676      get { return (OptionalConstrainedValueParameter<IManipulator>)Parameters["Mutator"]; }
    7777    }
     
    9191      get { return (ValueLookupParameter<DoubleValue>)Parameters["ComparisonFactorUpperBound"]; }
    9292    }
    93     private OptionalConstrainedValueParameter<IDiscreteDoubleValueModifier> ComparisonFactorModifierParameter {
     93    public OptionalConstrainedValueParameter<IDiscreteDoubleValueModifier> ComparisonFactorModifierParameter {
    9494      get { return (OptionalConstrainedValueParameter<IDiscreteDoubleValueModifier>)Parameters["ComparisonFactorModifier"]; }
    9595    }
Note: See TracChangeset for help on using the changeset viewer.