- Timestamp:
- 09/14/11 13:59:25 (13 years ago)
- Location:
- branches/PersistenceSpeedUp
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceSpeedUp
- Property svn:ignore
-
old new 12 12 *.psess 13 13 *.vsp 14 *.docstates
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
branches/PersistenceSpeedUp/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/GeneticAlgorithm.cs
r6051 r6760 33 33 using HeuristicLab.PluginInfrastructure; 34 34 using HeuristicLab.Random; 35 using System.Collections.Generic; 35 36 36 37 namespace HeuristicLab.Algorithms.GeneticAlgorithm { … … 64 65 get { return (ValueParameter<IntValue>)Parameters["PopulationSize"]; } 65 66 } 66 p rivateConstrainedValueParameter<ISelector> SelectorParameter {67 public ConstrainedValueParameter<ISelector> SelectorParameter { 67 68 get { return (ConstrainedValueParameter<ISelector>)Parameters["Selector"]; } 68 69 } 69 p rivateConstrainedValueParameter<ICrossover> CrossoverParameter {70 public ConstrainedValueParameter<ICrossover> CrossoverParameter { 70 71 get { return (ConstrainedValueParameter<ICrossover>)Parameters["Crossover"]; } 71 72 } … … 73 74 get { return (ValueParameter<PercentValue>)Parameters["MutationProbability"]; } 74 75 } 75 p rivateOptionalConstrainedValueParameter<IManipulator> MutatorParameter {76 public OptionalConstrainedValueParameter<IManipulator> MutatorParameter { 76 77 get { return (OptionalConstrainedValueParameter<IManipulator>)Parameters["Mutator"]; } 77 78 } -
branches/PersistenceSpeedUp/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/HeuristicLabAlgorithmsGeneticAlgorithmPlugin.cs.frame
r6099 r6760 26 26 /// Plugin class for HeuristicLab.Algorithms.GeneticAlgorithm plugin. 27 27 /// </summary> 28 [Plugin("HeuristicLab.Algorithms.GeneticAlgorithm", "3.3. 4.$WCREV$")]28 [Plugin("HeuristicLab.Algorithms.GeneticAlgorithm", "3.3.5.$WCREV$")] 29 29 [PluginFile("HeuristicLab.Algorithms.GeneticAlgorithm-3.3.dll", PluginFileType.Assembly)] 30 30 [PluginDependency("HeuristicLab.Analysis", "3.3")] -
branches/PersistenceSpeedUp/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/IslandGeneticAlgorithm.cs
r6051 r6760 70 70 get { return (ValueParameter<PercentValue>)Parameters["MigrationRate"]; } 71 71 } 72 p rivateConstrainedValueParameter<IMigrator> MigratorParameter {72 public ConstrainedValueParameter<IMigrator> MigratorParameter { 73 73 get { return (ConstrainedValueParameter<IMigrator>)Parameters["Migrator"]; } 74 74 } 75 p rivateConstrainedValueParameter<ISelector> EmigrantsSelectorParameter {75 public ConstrainedValueParameter<ISelector> EmigrantsSelectorParameter { 76 76 get { return (ConstrainedValueParameter<ISelector>)Parameters["EmigrantsSelector"]; } 77 77 } 78 p rivateConstrainedValueParameter<IReplacer> ImmigrationReplacerParameter {78 public ConstrainedValueParameter<IReplacer> ImmigrationReplacerParameter { 79 79 get { return (ConstrainedValueParameter<IReplacer>)Parameters["ImmigrationReplacer"]; } 80 80 } … … 85 85 get { return (ValueParameter<IntValue>)Parameters["MaximumGenerations"]; } 86 86 } 87 p rivateConstrainedValueParameter<ISelector> SelectorParameter {87 public ConstrainedValueParameter<ISelector> SelectorParameter { 88 88 get { return (ConstrainedValueParameter<ISelector>)Parameters["Selector"]; } 89 89 } 90 p rivateConstrainedValueParameter<ICrossover> CrossoverParameter {90 public ConstrainedValueParameter<ICrossover> CrossoverParameter { 91 91 get { return (ConstrainedValueParameter<ICrossover>)Parameters["Crossover"]; } 92 92 } … … 94 94 get { return (ValueParameter<PercentValue>)Parameters["MutationProbability"]; } 95 95 } 96 p rivateOptionalConstrainedValueParameter<IManipulator> MutatorParameter {96 public OptionalConstrainedValueParameter<IManipulator> MutatorParameter { 97 97 get { return (OptionalConstrainedValueParameter<IManipulator>)Parameters["Mutator"]; } 98 98 } -
branches/PersistenceSpeedUp/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/Properties/AssemblyInfo.frame
r6099 r6760 53 53 // by using the '*' as shown below: 54 54 [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.