Free cookie consent management tool by TermsFeed Policy Generator

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

#1541

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

Legend:

Unmodified
Added
Removed
  • branches/QAPAlgorithms

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

    r6051 r6569  
    3333using HeuristicLab.PluginInfrastructure;
    3434using HeuristicLab.Random;
     35using System.Collections.Generic;
    3536
    3637namespace HeuristicLab.Algorithms.GeneticAlgorithm {
     
    6465      get { return (ValueParameter<IntValue>)Parameters["PopulationSize"]; }
    6566    }
    66     private ConstrainedValueParameter<ISelector> SelectorParameter {
     67    public ConstrainedValueParameter<ISelector> SelectorParameter {
    6768      get { return (ConstrainedValueParameter<ISelector>)Parameters["Selector"]; }
    6869    }
    69     private ConstrainedValueParameter<ICrossover> CrossoverParameter {
     70    public ConstrainedValueParameter<ICrossover> CrossoverParameter {
    7071      get { return (ConstrainedValueParameter<ICrossover>)Parameters["Crossover"]; }
    7172    }
     
    7374      get { return (ValueParameter<PercentValue>)Parameters["MutationProbability"]; }
    7475    }
    75     private OptionalConstrainedValueParameter<IManipulator> MutatorParameter {
     76    public OptionalConstrainedValueParameter<IManipulator> MutatorParameter {
    7677      get { return (OptionalConstrainedValueParameter<IManipulator>)Parameters["Mutator"]; }
    7778    }
  • branches/QAPAlgorithms/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/HeuristicLabAlgorithmsGeneticAlgorithmPlugin.cs.frame

    r6099 r6569  
    2626  /// Plugin class for HeuristicLab.Algorithms.GeneticAlgorithm plugin.
    2727  /// </summary>
    28   [Plugin("HeuristicLab.Algorithms.GeneticAlgorithm", "3.3.4.$WCREV$")]
     28  [Plugin("HeuristicLab.Algorithms.GeneticAlgorithm", "3.3.5.$WCREV$")]
    2929  [PluginFile("HeuristicLab.Algorithms.GeneticAlgorithm-3.3.dll", PluginFileType.Assembly)]
    3030  [PluginDependency("HeuristicLab.Analysis", "3.3")]
  • 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    }
  • branches/QAPAlgorithms/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/Properties/AssemblyInfo.frame

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