Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/26/12 09:51:13 (13 years ago)
Author:
jkarder
Message:

#1331: merged r8086:8330 from trunk

Location:
branches/ScatterSearch (trunk integration)
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • branches/ScatterSearch (trunk integration)

  • TabularUnified branches/ScatterSearch (trunk integration)/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/GeneticAlgorithm.cs

    r8086 r8331  
    6464      get { return (ValueParameter<IntValue>)Parameters["PopulationSize"]; }
    6565    }
    66     public ConstrainedValueParameter<ISelector> SelectorParameter {
    67       get { return (ConstrainedValueParameter<ISelector>)Parameters["Selector"]; }
    68     }
    69     public ConstrainedValueParameter<ICrossover> CrossoverParameter {
    70       get { return (ConstrainedValueParameter<ICrossover>)Parameters["Crossover"]; }
     66    public IConstrainedValueParameter<ISelector> SelectorParameter {
     67      get { return (IConstrainedValueParameter<ISelector>)Parameters["Selector"]; }
     68    }
     69    public IConstrainedValueParameter<ICrossover> CrossoverParameter {
     70      get { return (IConstrainedValueParameter<ICrossover>)Parameters["Crossover"]; }
    7171    }
    7272    private ValueParameter<PercentValue> MutationProbabilityParameter {
    7373      get { return (ValueParameter<PercentValue>)Parameters["MutationProbability"]; }
    7474    }
    75     public OptionalConstrainedValueParameter<IManipulator> MutatorParameter {
    76       get { return (OptionalConstrainedValueParameter<IManipulator>)Parameters["Mutator"]; }
     75    public IConstrainedValueParameter<IManipulator> MutatorParameter {
     76      get { return (IConstrainedValueParameter<IManipulator>)Parameters["Mutator"]; }
    7777    }
    7878    private ValueParameter<IntValue> ElitesParameter {
  • TabularUnified branches/ScatterSearch (trunk integration)/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/IslandGeneticAlgorithm.cs

    r8086 r8331  
    7070      get { return (ValueParameter<PercentValue>)Parameters["MigrationRate"]; }
    7171    }
    72     public ConstrainedValueParameter<IMigrator> MigratorParameter {
    73       get { return (ConstrainedValueParameter<IMigrator>)Parameters["Migrator"]; }
    74     }
    75     public ConstrainedValueParameter<ISelector> EmigrantsSelectorParameter {
    76       get { return (ConstrainedValueParameter<ISelector>)Parameters["EmigrantsSelector"]; }
    77     }
    78     public ConstrainedValueParameter<IReplacer> ImmigrationReplacerParameter {
    79       get { return (ConstrainedValueParameter<IReplacer>)Parameters["ImmigrationReplacer"]; }
     72    public IConstrainedValueParameter<IMigrator> MigratorParameter {
     73      get { return (IConstrainedValueParameter<IMigrator>)Parameters["Migrator"]; }
     74    }
     75    public IConstrainedValueParameter<ISelector> EmigrantsSelectorParameter {
     76      get { return (IConstrainedValueParameter<ISelector>)Parameters["EmigrantsSelector"]; }
     77    }
     78    public IConstrainedValueParameter<IReplacer> ImmigrationReplacerParameter {
     79      get { return (IConstrainedValueParameter<IReplacer>)Parameters["ImmigrationReplacer"]; }
    8080    }
    8181    private ValueParameter<IntValue> PopulationSizeParameter {
     
    8585      get { return (ValueParameter<IntValue>)Parameters["MaximumGenerations"]; }
    8686    }
    87     public ConstrainedValueParameter<ISelector> SelectorParameter {
    88       get { return (ConstrainedValueParameter<ISelector>)Parameters["Selector"]; }
    89     }
    90     public ConstrainedValueParameter<ICrossover> CrossoverParameter {
    91       get { return (ConstrainedValueParameter<ICrossover>)Parameters["Crossover"]; }
     87    public IConstrainedValueParameter<ISelector> SelectorParameter {
     88      get { return (IConstrainedValueParameter<ISelector>)Parameters["Selector"]; }
     89    }
     90    public IConstrainedValueParameter<ICrossover> CrossoverParameter {
     91      get { return (IConstrainedValueParameter<ICrossover>)Parameters["Crossover"]; }
    9292    }
    9393    private ValueParameter<PercentValue> MutationProbabilityParameter {
    9494      get { return (ValueParameter<PercentValue>)Parameters["MutationProbability"]; }
    9595    }
    96     public OptionalConstrainedValueParameter<IManipulator> MutatorParameter {
    97       get { return (OptionalConstrainedValueParameter<IManipulator>)Parameters["Mutator"]; }
     96    public IConstrainedValueParameter<IManipulator> MutatorParameter {
     97      get { return (IConstrainedValueParameter<IManipulator>)Parameters["Mutator"]; }
    9898    }
    9999    private ValueParameter<IntValue> ElitesParameter {
  • TabularUnified branches/ScatterSearch (trunk integration)/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/Plugin.cs.frame

    r7259 r8331  
    2626  /// Plugin class for HeuristicLab.Algorithms.GeneticAlgorithm plugin.
    2727  /// </summary>
    28   [Plugin("HeuristicLab.Algorithms.GeneticAlgorithm", "3.3.6.$WCREV$")]
     28  [Plugin("HeuristicLab.Algorithms.GeneticAlgorithm", "3.3.7.$WCREV$")]
    2929  [PluginFile("HeuristicLab.Algorithms.GeneticAlgorithm-3.3.dll", PluginFileType.Assembly)]
    3030  [PluginDependency("HeuristicLab.Analysis", "3.3")]
  • TabularUnified branches/ScatterSearch (trunk integration)/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/Properties/AssemblyInfo.cs.frame

    r7259 r8331  
    5353// by using the '*' as shown below:
    5454[assembly: AssemblyVersion("3.3.0.0")]
    55 [assembly: AssemblyFileVersion("3.3.6.$WCREV$")]
     55[assembly: AssemblyFileVersion("3.3.7.$WCREV$")]
Note: See TracChangeset for help on using the changeset viewer.