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.NSGA2/3.3/NSGA2.cs

    r8085 r8206  
    6464      get { return (ValueParameter<IntValue>)Parameters["PopulationSize"]; }
    6565    }
    66     private ConstrainedValueParameter<ISelector> SelectorParameter {
    67       get { return (ConstrainedValueParameter<ISelector>)Parameters["Selector"]; }
     66    public IConstrainedValueParameter<ISelector> SelectorParameter {
     67      get { return (IConstrainedValueParameter<ISelector>)Parameters["Selector"]; }
    6868    }
    6969    private ValueParameter<PercentValue> CrossoverProbabilityParameter {
    7070      get { return (ValueParameter<PercentValue>)Parameters["CrossoverProbability"]; }
    7171    }
    72     private ConstrainedValueParameter<ICrossover> CrossoverParameter {
    73       get { return (ConstrainedValueParameter<ICrossover>)Parameters["Crossover"]; }
     72    public IConstrainedValueParameter<ICrossover> CrossoverParameter {
     73      get { return (IConstrainedValueParameter<ICrossover>)Parameters["Crossover"]; }
    7474    }
    7575    private ValueParameter<PercentValue> MutationProbabilityParameter {
    7676      get { return (ValueParameter<PercentValue>)Parameters["MutationProbability"]; }
    7777    }
    78     private OptionalConstrainedValueParameter<IManipulator> MutatorParameter {
    79       get { return (OptionalConstrainedValueParameter<IManipulator>)Parameters["Mutator"]; }
     78    public IConstrainedValueParameter<IManipulator> MutatorParameter {
     79      get { return (IConstrainedValueParameter<IManipulator>)Parameters["Mutator"]; }
    8080    }
    8181    private ValueParameter<MultiAnalyzer> AnalyzerParameter {
Note: See TracChangeset for help on using the changeset viewer.