Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/17/11 22:51:11 (13 years ago)
Author:
abeham
Message:

#1541

  • updated to latest trunk version
Location:
branches/QAPAlgorithms
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/QAPAlgorithms

  • branches/QAPAlgorithms/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/IslandGeneticAlgorithm.cs

    r6051 r6569  
    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.