Changeset 8331 for branches/ScatterSearch (trunk integration)/HeuristicLab.Algorithms.GeneticAlgorithm
- Timestamp:
- 07/26/12 09:51:13 (13 years ago)
- Location:
- branches/ScatterSearch (trunk integration)
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ScatterSearch (trunk integration) ¶
- Property svn:ignore
-
TabularUnified
old new 21 21 protoc.exe 22 22 _ReSharper.HeuristicLab 3.3 Tests 23 Google.ProtocolBuffers-2.4.1.473.dll
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
TabularUnified branches/ScatterSearch (trunk integration)/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/GeneticAlgorithm.cs ¶
r8086 r8331 64 64 get { return (ValueParameter<IntValue>)Parameters["PopulationSize"]; } 65 65 } 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"]; } 71 71 } 72 72 private ValueParameter<PercentValue> MutationProbabilityParameter { 73 73 get { return (ValueParameter<PercentValue>)Parameters["MutationProbability"]; } 74 74 } 75 public OptionalConstrainedValueParameter<IManipulator> MutatorParameter {76 get { return ( OptionalConstrainedValueParameter<IManipulator>)Parameters["Mutator"]; }75 public IConstrainedValueParameter<IManipulator> MutatorParameter { 76 get { return (IConstrainedValueParameter<IManipulator>)Parameters["Mutator"]; } 77 77 } 78 78 private ValueParameter<IntValue> ElitesParameter { -
TabularUnified branches/ScatterSearch (trunk integration)/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/IslandGeneticAlgorithm.cs ¶
r8086 r8331 70 70 get { return (ValueParameter<PercentValue>)Parameters["MigrationRate"]; } 71 71 } 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"]; } 80 80 } 81 81 private ValueParameter<IntValue> PopulationSizeParameter { … … 85 85 get { return (ValueParameter<IntValue>)Parameters["MaximumGenerations"]; } 86 86 } 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"]; } 92 92 } 93 93 private ValueParameter<PercentValue> MutationProbabilityParameter { 94 94 get { return (ValueParameter<PercentValue>)Parameters["MutationProbability"]; } 95 95 } 96 public OptionalConstrainedValueParameter<IManipulator> MutatorParameter {97 get { return ( OptionalConstrainedValueParameter<IManipulator>)Parameters["Mutator"]; }96 public IConstrainedValueParameter<IManipulator> MutatorParameter { 97 get { return (IConstrainedValueParameter<IManipulator>)Parameters["Mutator"]; } 98 98 } 99 99 private ValueParameter<IntValue> ElitesParameter { -
TabularUnified branches/ScatterSearch (trunk integration)/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/Plugin.cs.frame ¶
r7259 r8331 26 26 /// Plugin class for HeuristicLab.Algorithms.GeneticAlgorithm plugin. 27 27 /// </summary> 28 [Plugin("HeuristicLab.Algorithms.GeneticAlgorithm", "3.3. 6.$WCREV$")]28 [Plugin("HeuristicLab.Algorithms.GeneticAlgorithm", "3.3.7.$WCREV$")] 29 29 [PluginFile("HeuristicLab.Algorithms.GeneticAlgorithm-3.3.dll", PluginFileType.Assembly)] 30 30 [PluginDependency("HeuristicLab.Analysis", "3.3")] -
TabularUnified branches/ScatterSearch (trunk integration)/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/Properties/AssemblyInfo.cs.frame ¶
r7259 r8331 53 53 // by using the '*' as shown below: 54 54 [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.