Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/03/12 16:46:35 (12 years ago)
Author:
gkronber
Message:

#1847: merged r8084:8205 from trunk into GP move operators branch

Location:
branches/GP-MoveOperators
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/GP-MoveOperators

  • branches/GP-MoveOperators/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/SASEGASA.cs

    r8085 r8206  
    7070      get { return (ValueParameter<IntValue>)Parameters["MaximumGenerations"]; }
    7171    }
    72     private ConstrainedValueParameter<ISelector> SelectorParameter {
    73       get { return (ConstrainedValueParameter<ISelector>)Parameters["Selector"]; }
    74     }
    75     private ConstrainedValueParameter<ICrossover> CrossoverParameter {
    76       get { return (ConstrainedValueParameter<ICrossover>)Parameters["Crossover"]; }
     72    public IConstrainedValueParameter<ISelector> SelectorParameter {
     73      get { return (IConstrainedValueParameter<ISelector>)Parameters["Selector"]; }
     74    }
     75    public IConstrainedValueParameter<ICrossover> CrossoverParameter {
     76      get { return (IConstrainedValueParameter<ICrossover>)Parameters["Crossover"]; }
    7777    }
    7878    private ValueParameter<PercentValue> MutationProbabilityParameter {
    7979      get { return (ValueParameter<PercentValue>)Parameters["MutationProbability"]; }
    8080    }
    81     private OptionalConstrainedValueParameter<IManipulator> MutatorParameter {
    82       get { return (OptionalConstrainedValueParameter<IManipulator>)Parameters["Mutator"]; }
     81    public IConstrainedValueParameter<IManipulator> MutatorParameter {
     82      get { return (IConstrainedValueParameter<IManipulator>)Parameters["Mutator"]; }
    8383    }
    8484    private ValueParameter<IntValue> ElitesParameter {
     
    9494      get { return (ValueLookupParameter<DoubleValue>)Parameters["ComparisonFactorUpperBound"]; }
    9595    }
    96     private OptionalConstrainedValueParameter<IDiscreteDoubleValueModifier> ComparisonFactorModifierParameter {
    97       get { return (OptionalConstrainedValueParameter<IDiscreteDoubleValueModifier>)Parameters["ComparisonFactorModifier"]; }
     96    public IConstrainedValueParameter<IDiscreteDoubleValueModifier> ComparisonFactorModifierParameter {
     97      get { return (IConstrainedValueParameter<IDiscreteDoubleValueModifier>)Parameters["ComparisonFactorModifier"]; }
    9898    }
    9999    private ValueLookupParameter<DoubleValue> MaximumSelectionPressureParameter {
Note: See TracChangeset for help on using the changeset viewer.