[3356] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
| 4 | *
|
---|
| 5 | * This file is part of HeuristicLab.
|
---|
| 6 | *
|
---|
| 7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
| 8 | * it under the terms of the GNU General Public License as published by
|
---|
| 9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
| 10 | * (at your option) any later version.
|
---|
| 11 | *
|
---|
| 12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 15 | * GNU General Public License for more details.
|
---|
| 16 | *
|
---|
| 17 | * You should have received a copy of the GNU General Public License
|
---|
| 18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 19 | */
|
---|
| 20 | #endregion
|
---|
| 21 |
|
---|
| 22 | using System;
|
---|
| 23 | using System.Linq;
|
---|
[4068] | 24 | using HeuristicLab.Analysis;
|
---|
[3376] | 25 | using HeuristicLab.Common;
|
---|
[3356] | 26 | using HeuristicLab.Core;
|
---|
| 27 | using HeuristicLab.Data;
|
---|
| 28 | using HeuristicLab.Operators;
|
---|
| 29 | using HeuristicLab.Optimization;
|
---|
| 30 | using HeuristicLab.Optimization.Operators;
|
---|
| 31 | using HeuristicLab.Parameters;
|
---|
| 32 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
| 33 | using HeuristicLab.PluginInfrastructure;
|
---|
[3368] | 34 | using HeuristicLab.Random;
|
---|
[3356] | 35 |
|
---|
| 36 | namespace HeuristicLab.Algorithms.GeneticAlgorithm {
|
---|
| 37 | /// <summary>
|
---|
| 38 | /// An island genetic algorithm.
|
---|
| 39 | /// </summary>
|
---|
| 40 | [Item("Island Genetic Algorithm", "An island genetic algorithm.")]
|
---|
| 41 | [Creatable("Algorithms")]
|
---|
| 42 | [StorableClass]
|
---|
[4437] | 43 | public sealed class IslandGeneticAlgorithm : EngineAlgorithm, IStorableContent {
|
---|
| 44 | public string Filename { get; set; }
|
---|
[3356] | 45 |
|
---|
| 46 | #region Problem Properties
|
---|
| 47 | public override Type ProblemType {
|
---|
| 48 | get { return typeof(ISingleObjectiveProblem); }
|
---|
| 49 | }
|
---|
| 50 | public new ISingleObjectiveProblem Problem {
|
---|
| 51 | get { return (ISingleObjectiveProblem)base.Problem; }
|
---|
| 52 | set { base.Problem = value; }
|
---|
| 53 | }
|
---|
| 54 | #endregion
|
---|
| 55 |
|
---|
| 56 | #region Parameter Properties
|
---|
| 57 | private ValueParameter<IntValue> SeedParameter {
|
---|
| 58 | get { return (ValueParameter<IntValue>)Parameters["Seed"]; }
|
---|
| 59 | }
|
---|
| 60 | private ValueParameter<BoolValue> SetSeedRandomlyParameter {
|
---|
| 61 | get { return (ValueParameter<BoolValue>)Parameters["SetSeedRandomly"]; }
|
---|
| 62 | }
|
---|
| 63 | private ValueParameter<IntValue> NumberOfIslandsParameter {
|
---|
| 64 | get { return (ValueParameter<IntValue>)Parameters["NumberOfIslands"]; }
|
---|
| 65 | }
|
---|
| 66 | private ValueParameter<IntValue> MigrationIntervalParameter {
|
---|
| 67 | get { return (ValueParameter<IntValue>)Parameters["MigrationInterval"]; }
|
---|
| 68 | }
|
---|
| 69 | private ValueParameter<PercentValue> MigrationRateParameter {
|
---|
| 70 | get { return (ValueParameter<PercentValue>)Parameters["MigrationRate"]; }
|
---|
| 71 | }
|
---|
| 72 | private ConstrainedValueParameter<IMigrator> MigratorParameter {
|
---|
| 73 | get { return (ConstrainedValueParameter<IMigrator>)Parameters["Migrator"]; }
|
---|
| 74 | }
|
---|
| 75 | private ConstrainedValueParameter<ISelector> EmigrantsSelectorParameter {
|
---|
| 76 | get { return (ConstrainedValueParameter<ISelector>)Parameters["EmigrantsSelector"]; }
|
---|
| 77 | }
|
---|
[3601] | 78 | private ConstrainedValueParameter<IReplacer> ImmigrationReplacerParameter {
|
---|
| 79 | get { return (ConstrainedValueParameter<IReplacer>)Parameters["ImmigrationReplacer"]; }
|
---|
[3356] | 80 | }
|
---|
| 81 | private ValueParameter<IntValue> PopulationSizeParameter {
|
---|
| 82 | get { return (ValueParameter<IntValue>)Parameters["PopulationSize"]; }
|
---|
| 83 | }
|
---|
[3609] | 84 | private ValueParameter<IntValue> MaximumGenerationsParameter {
|
---|
| 85 | get { return (ValueParameter<IntValue>)Parameters["MaximumGenerations"]; }
|
---|
[3356] | 86 | }
|
---|
| 87 | private ConstrainedValueParameter<ISelector> SelectorParameter {
|
---|
| 88 | get { return (ConstrainedValueParameter<ISelector>)Parameters["Selector"]; }
|
---|
| 89 | }
|
---|
| 90 | private ConstrainedValueParameter<ICrossover> CrossoverParameter {
|
---|
| 91 | get { return (ConstrainedValueParameter<ICrossover>)Parameters["Crossover"]; }
|
---|
| 92 | }
|
---|
| 93 | private ValueParameter<PercentValue> MutationProbabilityParameter {
|
---|
| 94 | get { return (ValueParameter<PercentValue>)Parameters["MutationProbability"]; }
|
---|
| 95 | }
|
---|
| 96 | private OptionalConstrainedValueParameter<IManipulator> MutatorParameter {
|
---|
| 97 | get { return (OptionalConstrainedValueParameter<IManipulator>)Parameters["Mutator"]; }
|
---|
| 98 | }
|
---|
| 99 | private ValueParameter<IntValue> ElitesParameter {
|
---|
| 100 | get { return (ValueParameter<IntValue>)Parameters["Elites"]; }
|
---|
| 101 | }
|
---|
[3658] | 102 | private ValueParameter<MultiAnalyzer> AnalyzerParameter {
|
---|
| 103 | get { return (ValueParameter<MultiAnalyzer>)Parameters["Analyzer"]; }
|
---|
[3650] | 104 | }
|
---|
[3658] | 105 | private ValueParameter<MultiAnalyzer> IslandAnalyzerParameter {
|
---|
| 106 | get { return (ValueParameter<MultiAnalyzer>)Parameters["IslandAnalyzer"]; }
|
---|
[3650] | 107 | }
|
---|
[3356] | 108 | #endregion
|
---|
| 109 |
|
---|
| 110 | #region Properties
|
---|
| 111 | public IntValue Seed {
|
---|
| 112 | get { return SeedParameter.Value; }
|
---|
| 113 | set { SeedParameter.Value = value; }
|
---|
| 114 | }
|
---|
| 115 | public BoolValue SetSeedRandomly {
|
---|
| 116 | get { return SetSeedRandomlyParameter.Value; }
|
---|
| 117 | set { SetSeedRandomlyParameter.Value = value; }
|
---|
| 118 | }
|
---|
| 119 | public IntValue NumberOfIslands {
|
---|
| 120 | get { return NumberOfIslandsParameter.Value; }
|
---|
| 121 | set { NumberOfIslandsParameter.Value = value; }
|
---|
| 122 | }
|
---|
| 123 | public IntValue MigrationInterval {
|
---|
| 124 | get { return MigrationIntervalParameter.Value; }
|
---|
| 125 | set { MigrationIntervalParameter.Value = value; }
|
---|
| 126 | }
|
---|
| 127 | public PercentValue MigrationRate {
|
---|
| 128 | get { return MigrationRateParameter.Value; }
|
---|
| 129 | set { MigrationRateParameter.Value = value; }
|
---|
| 130 | }
|
---|
| 131 | public IMigrator Migrator {
|
---|
| 132 | get { return MigratorParameter.Value; }
|
---|
| 133 | set { MigratorParameter.Value = value; }
|
---|
| 134 | }
|
---|
| 135 | public ISelector EmigrantsSelector {
|
---|
| 136 | get { return EmigrantsSelectorParameter.Value; }
|
---|
| 137 | set { EmigrantsSelectorParameter.Value = value; }
|
---|
| 138 | }
|
---|
[3601] | 139 | public IReplacer ImmigrationReplacer {
|
---|
| 140 | get { return ImmigrationReplacerParameter.Value; }
|
---|
| 141 | set { ImmigrationReplacerParameter.Value = value; }
|
---|
[3356] | 142 | }
|
---|
| 143 | public IntValue PopulationSize {
|
---|
| 144 | get { return PopulationSizeParameter.Value; }
|
---|
| 145 | set { PopulationSizeParameter.Value = value; }
|
---|
| 146 | }
|
---|
[3609] | 147 | public IntValue MaximumGenerations {
|
---|
| 148 | get { return MaximumGenerationsParameter.Value; }
|
---|
| 149 | set { MaximumGenerationsParameter.Value = value; }
|
---|
[3356] | 150 | }
|
---|
| 151 | public ISelector Selector {
|
---|
| 152 | get { return SelectorParameter.Value; }
|
---|
| 153 | set { SelectorParameter.Value = value; }
|
---|
| 154 | }
|
---|
| 155 | public ICrossover Crossover {
|
---|
| 156 | get { return CrossoverParameter.Value; }
|
---|
| 157 | set { CrossoverParameter.Value = value; }
|
---|
| 158 | }
|
---|
| 159 | public PercentValue MutationProbability {
|
---|
| 160 | get { return MutationProbabilityParameter.Value; }
|
---|
| 161 | set { MutationProbabilityParameter.Value = value; }
|
---|
| 162 | }
|
---|
| 163 | public IManipulator Mutator {
|
---|
| 164 | get { return MutatorParameter.Value; }
|
---|
| 165 | set { MutatorParameter.Value = value; }
|
---|
| 166 | }
|
---|
| 167 | public IntValue Elites {
|
---|
| 168 | get { return ElitesParameter.Value; }
|
---|
| 169 | set { ElitesParameter.Value = value; }
|
---|
| 170 | }
|
---|
[3658] | 171 | public MultiAnalyzer Analyzer {
|
---|
[3650] | 172 | get { return AnalyzerParameter.Value; }
|
---|
| 173 | set { AnalyzerParameter.Value = value; }
|
---|
| 174 | }
|
---|
[3658] | 175 | public MultiAnalyzer IslandAnalyzer {
|
---|
[3650] | 176 | get { return IslandAnalyzerParameter.Value; }
|
---|
| 177 | set { IslandAnalyzerParameter.Value = value; }
|
---|
| 178 | }
|
---|
[3359] | 179 | private RandomCreator RandomCreator {
|
---|
| 180 | get { return (RandomCreator)OperatorGraph.InitialOperator; }
|
---|
| 181 | }
|
---|
[3429] | 182 | private UniformSubScopesProcessor IslandProcessor {
|
---|
| 183 | get { return ((RandomCreator.Successor as SubScopesCreator).Successor as UniformSubScopesProcessor); }
|
---|
| 184 | }
|
---|
[3359] | 185 | private SolutionsCreator SolutionsCreator {
|
---|
[3429] | 186 | get { return (SolutionsCreator)IslandProcessor.Operator; }
|
---|
[3359] | 187 | }
|
---|
| 188 | private IslandGeneticAlgorithmMainLoop MainLoop {
|
---|
[3429] | 189 | get { return (IslandGeneticAlgorithmMainLoop)IslandProcessor.Successor; }
|
---|
[3359] | 190 | }
|
---|
[3689] | 191 | [Storable]
|
---|
[3662] | 192 | private BestAverageWorstQualityAnalyzer islandQualityAnalyzer;
|
---|
[3689] | 193 | [Storable]
|
---|
[3671] | 194 | private BestAverageWorstQualityAnalyzer qualityAnalyzer;
|
---|
[3356] | 195 | #endregion
|
---|
| 196 |
|
---|
| 197 | [StorableConstructor]
|
---|
| 198 | private IslandGeneticAlgorithm(bool deserializing) : base(deserializing) { }
|
---|
[4722] | 199 | [StorableHook(HookType.AfterDeserialization)]
|
---|
| 200 | private void AfterDeserialization() {
|
---|
| 201 | Initialize();
|
---|
| 202 | }
|
---|
| 203 | private IslandGeneticAlgorithm(IslandGeneticAlgorithm original, Cloner cloner)
|
---|
| 204 | : base(original, cloner) {
|
---|
| 205 | islandQualityAnalyzer = cloner.Clone(original.islandQualityAnalyzer);
|
---|
| 206 | qualityAnalyzer = cloner.Clone(original.qualityAnalyzer);
|
---|
| 207 | Initialize();
|
---|
| 208 | }
|
---|
| 209 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 210 | return new IslandGeneticAlgorithm(this, cloner);
|
---|
| 211 | }
|
---|
| 212 |
|
---|
[3356] | 213 | public IslandGeneticAlgorithm()
|
---|
| 214 | : base() {
|
---|
| 215 | Parameters.Add(new ValueParameter<IntValue>("Seed", "The random seed used to initialize the new pseudo random number generator.", new IntValue(0)));
|
---|
| 216 | Parameters.Add(new ValueParameter<BoolValue>("SetSeedRandomly", "True if the random seed should be set to a random value, otherwise false.", new BoolValue(true)));
|
---|
| 217 | Parameters.Add(new ValueParameter<IntValue>("NumberOfIslands", "The number of islands.", new IntValue(5)));
|
---|
| 218 | Parameters.Add(new ValueParameter<IntValue>("MigrationInterval", "The number of generations that should pass between migration phases.", new IntValue(20)));
|
---|
| 219 | Parameters.Add(new ValueParameter<PercentValue>("MigrationRate", "The proportion of individuals that should migrate between the islands.", new PercentValue(0.15)));
|
---|
| 220 | Parameters.Add(new ConstrainedValueParameter<IMigrator>("Migrator", "The migration strategy."));
|
---|
| 221 | Parameters.Add(new ConstrainedValueParameter<ISelector>("EmigrantsSelector", "Selects the individuals that will be migrated."));
|
---|
[3601] | 222 | Parameters.Add(new ConstrainedValueParameter<IReplacer>("ImmigrationReplacer", "Selects the population from the unification of the original population and the immigrants."));
|
---|
[3356] | 223 | Parameters.Add(new ValueParameter<IntValue>("PopulationSize", "The size of the population of solutions.", new IntValue(100)));
|
---|
[3609] | 224 | Parameters.Add(new ValueParameter<IntValue>("MaximumGenerations", "The maximum number of generations that should be processed.", new IntValue(1000)));
|
---|
[3356] | 225 | Parameters.Add(new ConstrainedValueParameter<ISelector>("Selector", "The operator used to select solutions for reproduction."));
|
---|
| 226 | Parameters.Add(new ConstrainedValueParameter<ICrossover>("Crossover", "The operator used to cross solutions."));
|
---|
| 227 | Parameters.Add(new ValueParameter<PercentValue>("MutationProbability", "The probability that the mutation operator is applied on a solution.", new PercentValue(0.05)));
|
---|
| 228 | Parameters.Add(new OptionalConstrainedValueParameter<IManipulator>("Mutator", "The operator used to mutate solutions."));
|
---|
| 229 | Parameters.Add(new ValueParameter<IntValue>("Elites", "The numer of elite solutions which are kept in each generation.", new IntValue(1)));
|
---|
[3658] | 230 | Parameters.Add(new ValueParameter<MultiAnalyzer>("Analyzer", "The operator used to analyze the islands.", new MultiAnalyzer()));
|
---|
| 231 | Parameters.Add(new ValueParameter<MultiAnalyzer>("IslandAnalyzer", "The operator used to analyze each island.", new MultiAnalyzer()));
|
---|
[4068] | 232 |
|
---|
[3359] | 233 | RandomCreator randomCreator = new RandomCreator();
|
---|
[3356] | 234 | SubScopesCreator populationCreator = new SubScopesCreator();
|
---|
| 235 | UniformSubScopesProcessor ussp1 = new UniformSubScopesProcessor();
|
---|
[3359] | 236 | SolutionsCreator solutionsCreator = new SolutionsCreator();
|
---|
| 237 | IslandGeneticAlgorithmMainLoop mainLoop = new IslandGeneticAlgorithmMainLoop();
|
---|
[3356] | 238 | OperatorGraph.InitialOperator = randomCreator;
|
---|
| 239 |
|
---|
| 240 | randomCreator.RandomParameter.ActualName = "Random";
|
---|
| 241 | randomCreator.SeedParameter.ActualName = SeedParameter.Name;
|
---|
| 242 | randomCreator.SeedParameter.Value = null;
|
---|
| 243 | randomCreator.SetSeedRandomlyParameter.ActualName = SetSeedRandomlyParameter.Name;
|
---|
| 244 | randomCreator.SetSeedRandomlyParameter.Value = null;
|
---|
| 245 | randomCreator.Successor = populationCreator;
|
---|
| 246 |
|
---|
| 247 | populationCreator.NumberOfSubScopesParameter.ActualName = NumberOfIslandsParameter.Name;
|
---|
| 248 | populationCreator.Successor = ussp1;
|
---|
| 249 |
|
---|
| 250 | ussp1.Operator = solutionsCreator;
|
---|
| 251 | ussp1.Successor = mainLoop;
|
---|
| 252 |
|
---|
| 253 | solutionsCreator.NumberOfSolutionsParameter.ActualName = PopulationSizeParameter.Name;
|
---|
| 254 | solutionsCreator.Successor = null;
|
---|
| 255 |
|
---|
| 256 | mainLoop.EmigrantsSelectorParameter.ActualName = EmigrantsSelectorParameter.Name;
|
---|
[3601] | 257 | mainLoop.ImmigrationReplacerParameter.ActualName = ImmigrationReplacerParameter.Name;
|
---|
[3609] | 258 | mainLoop.MaximumGenerationsParameter.ActualName = MaximumGenerationsParameter.Name;
|
---|
[3356] | 259 | mainLoop.MigrationIntervalParameter.ActualName = MigrationIntervalParameter.Name;
|
---|
| 260 | mainLoop.MigrationRateParameter.ActualName = MigrationRateParameter.Name;
|
---|
| 261 | mainLoop.MigratorParameter.ActualName = MigratorParameter.Name;
|
---|
| 262 | mainLoop.NumberOfIslandsParameter.ActualName = NumberOfIslandsParameter.Name;
|
---|
| 263 | mainLoop.SelectorParameter.ActualName = SelectorParameter.Name;
|
---|
| 264 | mainLoop.CrossoverParameter.ActualName = CrossoverParameter.Name;
|
---|
| 265 | mainLoop.ElitesParameter.ActualName = ElitesParameter.Name;
|
---|
| 266 | mainLoop.MutatorParameter.ActualName = MutatorParameter.Name;
|
---|
| 267 | mainLoop.MutationProbabilityParameter.ActualName = MutationProbabilityParameter.Name;
|
---|
| 268 | mainLoop.RandomParameter.ActualName = randomCreator.RandomParameter.ActualName;
|
---|
| 269 | mainLoop.ResultsParameter.ActualName = "Results";
|
---|
[3650] | 270 | mainLoop.AnalyzerParameter.ActualName = AnalyzerParameter.Name;
|
---|
| 271 | mainLoop.IslandAnalyzerParameter.ActualName = IslandAnalyzerParameter.Name;
|
---|
[3356] | 272 | mainLoop.Successor = null;
|
---|
| 273 |
|
---|
[3689] | 274 | foreach (ISelector selector in ApplicationManager.Manager.GetInstances<ISelector>().Where(x => !(x is IMultiObjectiveSelector)).OrderBy(x => x.Name))
|
---|
| 275 | SelectorParameter.ValidValues.Add(selector);
|
---|
| 276 | ISelector proportionalSelector = SelectorParameter.ValidValues.FirstOrDefault(x => x.GetType().Name.Equals("ProportionalSelector"));
|
---|
| 277 | if (proportionalSelector != null) SelectorParameter.Value = proportionalSelector;
|
---|
| 278 |
|
---|
| 279 | foreach (ISelector selector in ApplicationManager.Manager.GetInstances<ISelector>().Where(x => !(x is IMultiObjectiveSelector)).OrderBy(x => x.Name))
|
---|
| 280 | EmigrantsSelectorParameter.ValidValues.Add(selector);
|
---|
| 281 |
|
---|
| 282 | foreach (IReplacer replacer in ApplicationManager.Manager.GetInstances<IReplacer>().OrderBy(x => x.Name))
|
---|
| 283 | ImmigrationReplacerParameter.ValidValues.Add(replacer);
|
---|
| 284 |
|
---|
| 285 | ParameterizeSelectors();
|
---|
| 286 |
|
---|
| 287 | foreach (IMigrator migrator in ApplicationManager.Manager.GetInstances<IMigrator>().OrderBy(x => x.Name))
|
---|
| 288 | MigratorParameter.ValidValues.Add(migrator);
|
---|
| 289 |
|
---|
| 290 | qualityAnalyzer = new BestAverageWorstQualityAnalyzer();
|
---|
| 291 | islandQualityAnalyzer = new BestAverageWorstQualityAnalyzer();
|
---|
| 292 | ParameterizeAnalyzers();
|
---|
| 293 | UpdateAnalyzers();
|
---|
| 294 |
|
---|
[3356] | 295 | Initialize();
|
---|
| 296 | }
|
---|
| 297 |
|
---|
| 298 | public override void Prepare() {
|
---|
| 299 | if (Problem != null) base.Prepare();
|
---|
| 300 | }
|
---|
| 301 |
|
---|
| 302 | #region Events
|
---|
| 303 | protected override void OnProblemChanged() {
|
---|
| 304 | ParameterizeStochasticOperator(Problem.SolutionCreator);
|
---|
| 305 | ParameterizeStochasticOperator(Problem.Evaluator);
|
---|
| 306 | foreach (IOperator op in Problem.Operators) ParameterizeStochasticOperator(op);
|
---|
| 307 | ParameterizeSolutionsCreator();
|
---|
| 308 | ParameterizeMainLoop();
|
---|
| 309 | ParameterizeSelectors();
|
---|
[3650] | 310 | ParameterizeAnalyzers();
|
---|
[3750] | 311 | ParameterizeIterationBasedOperators();
|
---|
[3356] | 312 | UpdateCrossovers();
|
---|
| 313 | UpdateMutators();
|
---|
[3650] | 314 | UpdateAnalyzers();
|
---|
[3356] | 315 | Problem.Evaluator.QualityParameter.ActualNameChanged += new EventHandler(Evaluator_QualityParameter_ActualNameChanged);
|
---|
| 316 | base.OnProblemChanged();
|
---|
| 317 | }
|
---|
| 318 |
|
---|
| 319 | protected override void Problem_SolutionCreatorChanged(object sender, EventArgs e) {
|
---|
| 320 | ParameterizeStochasticOperator(Problem.SolutionCreator);
|
---|
| 321 | ParameterizeSolutionsCreator();
|
---|
| 322 | base.Problem_SolutionCreatorChanged(sender, e);
|
---|
| 323 | }
|
---|
| 324 | protected override void Problem_EvaluatorChanged(object sender, EventArgs e) {
|
---|
| 325 | ParameterizeStochasticOperator(Problem.Evaluator);
|
---|
| 326 | ParameterizeSolutionsCreator();
|
---|
| 327 | ParameterizeMainLoop();
|
---|
| 328 | ParameterizeSelectors();
|
---|
[3650] | 329 | ParameterizeAnalyzers();
|
---|
[3356] | 330 | Problem.Evaluator.QualityParameter.ActualNameChanged += new EventHandler(Evaluator_QualityParameter_ActualNameChanged);
|
---|
| 331 | base.Problem_EvaluatorChanged(sender, e);
|
---|
| 332 | }
|
---|
| 333 | protected override void Problem_OperatorsChanged(object sender, EventArgs e) {
|
---|
| 334 | foreach (IOperator op in Problem.Operators) ParameterizeStochasticOperator(op);
|
---|
[3750] | 335 | ParameterizeIterationBasedOperators();
|
---|
[3356] | 336 | UpdateCrossovers();
|
---|
| 337 | UpdateMutators();
|
---|
[3650] | 338 | UpdateAnalyzers();
|
---|
[3356] | 339 | base.Problem_OperatorsChanged(sender, e);
|
---|
| 340 | }
|
---|
| 341 | private void ElitesParameter_ValueChanged(object sender, EventArgs e) {
|
---|
| 342 | Elites.ValueChanged += new EventHandler(Elites_ValueChanged);
|
---|
| 343 | ParameterizeSelectors();
|
---|
| 344 | }
|
---|
| 345 | private void Elites_ValueChanged(object sender, EventArgs e) {
|
---|
| 346 | ParameterizeSelectors();
|
---|
| 347 | }
|
---|
| 348 | private void PopulationSizeParameter_ValueChanged(object sender, EventArgs e) {
|
---|
| 349 | NumberOfIslands.ValueChanged += new EventHandler(PopulationSize_ValueChanged);
|
---|
| 350 | ParameterizeSelectors();
|
---|
| 351 | }
|
---|
| 352 | private void PopulationSize_ValueChanged(object sender, EventArgs e) {
|
---|
| 353 | ParameterizeSelectors();
|
---|
| 354 | }
|
---|
| 355 | private void Evaluator_QualityParameter_ActualNameChanged(object sender, EventArgs e) {
|
---|
| 356 | ParameterizeMainLoop();
|
---|
| 357 | ParameterizeSelectors();
|
---|
[3650] | 358 | ParameterizeAnalyzers();
|
---|
[3356] | 359 | }
|
---|
| 360 | private void MigrationRateParameter_ValueChanged(object sender, EventArgs e) {
|
---|
| 361 | MigrationRate.ValueChanged += new EventHandler(MigrationRate_ValueChanged);
|
---|
| 362 | ParameterizeSelectors();
|
---|
| 363 | }
|
---|
| 364 | private void MigrationRate_ValueChanged(object sender, EventArgs e) {
|
---|
| 365 | ParameterizeSelectors();
|
---|
| 366 | }
|
---|
| 367 | #endregion
|
---|
| 368 |
|
---|
| 369 | #region Helpers
|
---|
| 370 | private void Initialize() {
|
---|
| 371 | PopulationSizeParameter.ValueChanged += new EventHandler(PopulationSizeParameter_ValueChanged);
|
---|
| 372 | PopulationSize.ValueChanged += new EventHandler(PopulationSize_ValueChanged);
|
---|
| 373 | MigrationRateParameter.ValueChanged += new EventHandler(MigrationRateParameter_ValueChanged);
|
---|
| 374 | MigrationRate.ValueChanged += new EventHandler(MigrationRate_ValueChanged);
|
---|
| 375 | ElitesParameter.ValueChanged += new EventHandler(ElitesParameter_ValueChanged);
|
---|
| 376 | Elites.ValueChanged += new EventHandler(Elites_ValueChanged);
|
---|
| 377 | if (Problem != null) {
|
---|
| 378 | Problem.Evaluator.QualityParameter.ActualNameChanged += new EventHandler(Evaluator_QualityParameter_ActualNameChanged);
|
---|
| 379 | }
|
---|
| 380 | }
|
---|
| 381 | private void ParameterizeSolutionsCreator() {
|
---|
[3359] | 382 | SolutionsCreator.EvaluatorParameter.ActualName = Problem.EvaluatorParameter.Name;
|
---|
| 383 | SolutionsCreator.SolutionCreatorParameter.ActualName = Problem.SolutionCreatorParameter.Name;
|
---|
[3356] | 384 | }
|
---|
| 385 | private void ParameterizeMainLoop() {
|
---|
[3359] | 386 | MainLoop.BestKnownQualityParameter.ActualName = Problem.BestKnownQualityParameter.Name;
|
---|
| 387 | MainLoop.EvaluatorParameter.ActualName = Problem.EvaluatorParameter.Name;
|
---|
| 388 | MainLoop.MaximizationParameter.ActualName = Problem.MaximizationParameter.Name;
|
---|
| 389 | MainLoop.QualityParameter.ActualName = Problem.Evaluator.QualityParameter.ActualName;
|
---|
[3356] | 390 | }
|
---|
| 391 | private void ParameterizeStochasticOperator(IOperator op) {
|
---|
| 392 | if (op is IStochasticOperator)
|
---|
[3359] | 393 | ((IStochasticOperator)op).RandomParameter.ActualName = RandomCreator.RandomParameter.ActualName;
|
---|
[3356] | 394 | }
|
---|
| 395 | private void ParameterizeSelectors() {
|
---|
[3689] | 396 | foreach (ISelector selector in SelectorParameter.ValidValues) {
|
---|
[3356] | 397 | selector.CopySelected = new BoolValue(true);
|
---|
| 398 | selector.NumberOfSelectedSubScopesParameter.Value = new IntValue(2 * (PopulationSize.Value - Elites.Value));
|
---|
| 399 | ParameterizeStochasticOperator(selector);
|
---|
| 400 | }
|
---|
[3689] | 401 | foreach (ISelector selector in EmigrantsSelectorParameter.ValidValues) {
|
---|
[3356] | 402 | selector.CopySelected = new BoolValue(true);
|
---|
| 403 | selector.NumberOfSelectedSubScopesParameter.Value = new IntValue((int)Math.Ceiling(PopulationSize.Value * MigrationRate.Value));
|
---|
| 404 | ParameterizeStochasticOperator(selector);
|
---|
| 405 | }
|
---|
[3689] | 406 | foreach (IReplacer replacer in ImmigrationReplacerParameter.ValidValues) {
|
---|
[3601] | 407 | ParameterizeStochasticOperator(replacer);
|
---|
[3356] | 408 | }
|
---|
| 409 | if (Problem != null) {
|
---|
[3689] | 410 | foreach (ISingleObjectiveSelector selector in SelectorParameter.ValidValues.OfType<ISingleObjectiveSelector>()) {
|
---|
[3356] | 411 | selector.MaximizationParameter.ActualName = Problem.MaximizationParameter.Name;
|
---|
| 412 | selector.QualityParameter.ActualName = Problem.Evaluator.QualityParameter.ActualName;
|
---|
| 413 | }
|
---|
[3689] | 414 | foreach (ISingleObjectiveSelector selector in EmigrantsSelectorParameter.ValidValues.OfType<ISingleObjectiveSelector>()) {
|
---|
[3356] | 415 | selector.MaximizationParameter.ActualName = Problem.MaximizationParameter.Name;
|
---|
| 416 | selector.QualityParameter.ActualName = Problem.Evaluator.QualityParameter.ActualName;
|
---|
| 417 | }
|
---|
[3689] | 418 | foreach (ISingleObjectiveReplacer selector in ImmigrationReplacerParameter.ValidValues.OfType<ISingleObjectiveReplacer>()) {
|
---|
[3356] | 419 | selector.MaximizationParameter.ActualName = Problem.MaximizationParameter.Name;
|
---|
| 420 | selector.QualityParameter.ActualName = Problem.Evaluator.QualityParameter.ActualName;
|
---|
| 421 | }
|
---|
| 422 | }
|
---|
| 423 | }
|
---|
[3650] | 424 | private void ParameterizeAnalyzers() {
|
---|
| 425 | islandQualityAnalyzer.ResultsParameter.ActualName = "Results";
|
---|
[3673] | 426 | islandQualityAnalyzer.QualityParameter.Depth = 1;
|
---|
[3671] | 427 | qualityAnalyzer.ResultsParameter.ActualName = "Results";
|
---|
[3673] | 428 | qualityAnalyzer.QualityParameter.Depth = 2;
|
---|
| 429 |
|
---|
[3650] | 430 | if (Problem != null) {
|
---|
| 431 | islandQualityAnalyzer.MaximizationParameter.ActualName = Problem.MaximizationParameter.Name;
|
---|
| 432 | islandQualityAnalyzer.QualityParameter.ActualName = Problem.Evaluator.QualityParameter.ActualName;
|
---|
| 433 | islandQualityAnalyzer.BestKnownQualityParameter.ActualName = Problem.BestKnownQualityParameter.Name;
|
---|
[3671] | 434 | qualityAnalyzer.MaximizationParameter.ActualName = Problem.MaximizationParameter.Name;
|
---|
| 435 | qualityAnalyzer.QualityParameter.ActualName = Problem.Evaluator.QualityParameter.ActualName;
|
---|
| 436 | qualityAnalyzer.BestKnownQualityParameter.ActualName = Problem.BestKnownQualityParameter.Name;
|
---|
[3650] | 437 | }
|
---|
| 438 | }
|
---|
[3750] | 439 | private void ParameterizeIterationBasedOperators() {
|
---|
| 440 | if (Problem != null) {
|
---|
| 441 | foreach (IIterationBasedOperator op in Problem.Operators.OfType<IIterationBasedOperator>()) {
|
---|
| 442 | op.IterationsParameter.ActualName = "Generations";
|
---|
| 443 | op.MaximumIterationsParameter.ActualName = "MaximumGenerations";
|
---|
| 444 | }
|
---|
| 445 | }
|
---|
| 446 | }
|
---|
[3356] | 447 | private void UpdateCrossovers() {
|
---|
| 448 | ICrossover oldCrossover = CrossoverParameter.Value;
|
---|
| 449 | CrossoverParameter.ValidValues.Clear();
|
---|
| 450 | foreach (ICrossover crossover in Problem.Operators.OfType<ICrossover>().OrderBy(x => x.Name))
|
---|
| 451 | CrossoverParameter.ValidValues.Add(crossover);
|
---|
| 452 | if (oldCrossover != null) {
|
---|
| 453 | ICrossover crossover = CrossoverParameter.ValidValues.FirstOrDefault(x => x.GetType() == oldCrossover.GetType());
|
---|
| 454 | if (crossover != null) CrossoverParameter.Value = crossover;
|
---|
| 455 | }
|
---|
| 456 | }
|
---|
| 457 | private void UpdateMutators() {
|
---|
| 458 | IManipulator oldMutator = MutatorParameter.Value;
|
---|
| 459 | MutatorParameter.ValidValues.Clear();
|
---|
| 460 | foreach (IManipulator mutator in Problem.Operators.OfType<IManipulator>().OrderBy(x => x.Name))
|
---|
| 461 | MutatorParameter.ValidValues.Add(mutator);
|
---|
| 462 | if (oldMutator != null) {
|
---|
| 463 | IManipulator mutator = MutatorParameter.ValidValues.FirstOrDefault(x => x.GetType() == oldMutator.GetType());
|
---|
| 464 | if (mutator != null) MutatorParameter.Value = mutator;
|
---|
| 465 | }
|
---|
| 466 | }
|
---|
[3650] | 467 | private void UpdateAnalyzers() {
|
---|
| 468 | IslandAnalyzer.Operators.Clear();
|
---|
| 469 | Analyzer.Operators.Clear();
|
---|
| 470 | IslandAnalyzer.Operators.Add(islandQualityAnalyzer);
|
---|
| 471 | if (Problem != null) {
|
---|
[3816] | 472 | foreach (IAnalyzer analyzer in Problem.Operators.OfType<IAnalyzer>()) {
|
---|
[3671] | 473 | foreach (IScopeTreeLookupParameter param in analyzer.Parameters.OfType<IScopeTreeLookupParameter>())
|
---|
| 474 | param.Depth = 2;
|
---|
| 475 | Analyzer.Operators.Add(analyzer);
|
---|
[3650] | 476 | }
|
---|
| 477 | }
|
---|
[3799] | 478 | Analyzer.Operators.Add(qualityAnalyzer);
|
---|
[3650] | 479 | }
|
---|
[3356] | 480 | #endregion
|
---|
| 481 | }
|
---|
| 482 | }
|
---|