Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ALPS/HeuristicLab.Algorithms.ALPS.SteadyState/3.3/RandomLayerProcessor.cs @ 12136

Last change on this file since 12136 was 12136, checked in by pfleck, 9 years ago

#2350

  • Worked on AlpsSsGeneticAlgorithmMainLoop.
  • Added SteadyStateMatingPoolCreator, RandomLayerProcessor and RandomIntAssigner.
File size: 3.5 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2015 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
22using System;
23using HeuristicLab.Common;
24using HeuristicLab.Core;
25using HeuristicLab.Data;
26using HeuristicLab.Operators;
27using HeuristicLab.Optimization;
28using HeuristicLab.Parameters;
29using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
30using HeuristicLab.Random;
31
32namespace HeuristicLab.Algorithms.ALPS.SteadyState {
33  [Item("RandomLayerProcessor", "An operator which applies a specified operator on a random selected sub-scope (layer).")]
34  [StorableClass]
35  public class RandomLayerProcessor : SingleSuccessorOperator, IStochasticOperator {
36    private OperatorParameter OperatorParameter {
37      get { return (OperatorParameter)Parameters["Operator"]; }
38    }
39    public ILookupParameter<IRandom> RandomParameter {
40      get { return (ILookupParameter<IRandom>)Parameters["Random"]; }
41    }
42
43    private ILookupParameter<IntArray> PopulationSizeParameter {
44      get { return (ILookupParameter<IntArray>)Parameters["PopulationSize"]; }
45    }
46
47    public IOperator Operator {
48      get { return OperatorParameter.Value; }
49      set { OperatorParameter.Value = value; }
50    }
51
52    [StorableConstructor]
53    private RandomLayerProcessor(bool deserializing) : base(deserializing) { }
54    private RandomLayerProcessor(RandomLayerProcessor original, Cloner cloner)
55      : base(original, cloner) {
56    }
57    public RandomLayerProcessor()
58      : base() {
59      Parameters.Add(new OperatorParameter("Operator", "The operator which should be applied on a random sub-scopes of the current scope."));
60      Parameters.Add(new LookupParameter<IRandom>("Random", "The random number generator to use."));
61
62      Parameters.Add(new LookupParameter<IntArray>("PopulationSize"));
63    }
64
65    public override IDeepCloneable Clone(Cloner cloner) {
66      return new RandomLayerProcessor(this, cloner);
67    }
68
69    public override IOperation Apply() {
70      var random = RandomParameter.ActualValue;
71
72      var next = new OperationCollection(base.Apply());
73      if (Operator != null) {
74        var subScopes = ExecutionContext.Scope.SubScopes;
75        int index = random.Next(subScopes.Count);
76        var selectedLayer = subScopes[index];
77
78        var layerParameters = new LayerIntermediateParameter {
79            new ValueParameter<IntValue>(PopulationSizeParameter.ActualName, new IntValue(PopulationSizeParameter.ActualValue[Math.Min(index, PopulationSizeParameter.ActualValue.Length - 1)]))
80          };
81        var immediateContext = new ExecutionContext(ExecutionContext.Parent, layerParameters, selectedLayer);
82        next.Insert(0, immediateContext.CreateChildOperation(Operator, selectedLayer));
83      }
84      return next;
85    }
86  }
87}
Note: See TracBrowser for help on using the repository browser.