Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/24/11 17:51:06 (13 years ago)
Author:
gkronber
Message:

#1553: added remaining unit tests to create and run optimizer samples.

File:
1 edited

Legend:

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

    r6051 r6476  
    7070      get { return (ValueParameter<PercentValue>)Parameters["MigrationRate"]; }
    7171    }
    72     private ConstrainedValueParameter<IMigrator> MigratorParameter {
     72    public ConstrainedValueParameter<IMigrator> MigratorParameter {
    7373      get { return (ConstrainedValueParameter<IMigrator>)Parameters["Migrator"]; }
    7474    }
    75     private ConstrainedValueParameter<ISelector> EmigrantsSelectorParameter {
     75    public ConstrainedValueParameter<ISelector> EmigrantsSelectorParameter {
    7676      get { return (ConstrainedValueParameter<ISelector>)Parameters["EmigrantsSelector"]; }
    7777    }
    78     private ConstrainedValueParameter<IReplacer> ImmigrationReplacerParameter {
     78    public ConstrainedValueParameter<IReplacer> ImmigrationReplacerParameter {
    7979      get { return (ConstrainedValueParameter<IReplacer>)Parameters["ImmigrationReplacer"]; }
    8080    }
     
    8585      get { return (ValueParameter<IntValue>)Parameters["MaximumGenerations"]; }
    8686    }
    87     private ConstrainedValueParameter<ISelector> SelectorParameter {
     87    public ConstrainedValueParameter<ISelector> SelectorParameter {
    8888      get { return (ConstrainedValueParameter<ISelector>)Parameters["Selector"]; }
    8989    }
    90     private ConstrainedValueParameter<ICrossover> CrossoverParameter {
     90    public ConstrainedValueParameter<ICrossover> CrossoverParameter {
    9191      get { return (ConstrainedValueParameter<ICrossover>)Parameters["Crossover"]; }
    9292    }
     
    9494      get { return (ValueParameter<PercentValue>)Parameters["MutationProbability"]; }
    9595    }
    96     private OptionalConstrainedValueParameter<IManipulator> MutatorParameter {
     96    public OptionalConstrainedValueParameter<IManipulator> MutatorParameter {
    9797      get { return (OptionalConstrainedValueParameter<IManipulator>)Parameters["Mutator"]; }
    9898    }
Note: See TracChangeset for help on using the changeset viewer.