[11585] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[17181] | 3 | * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[11585] | 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.Collections.Generic;
|
---|
| 23 | using System.Linq;
|
---|
| 24 | using HeuristicLab.Common;
|
---|
| 25 | using HeuristicLab.Core;
|
---|
| 26 | using HeuristicLab.Data;
|
---|
| 27 | using HeuristicLab.Parameters;
|
---|
[17097] | 28 | using HEAL.Attic;
|
---|
[11585] | 29 | using HeuristicLab.Selection;
|
---|
| 30 |
|
---|
| 31 | namespace HeuristicLab.Algorithms.ALPS {
|
---|
| 32 |
|
---|
[13206] | 33 | [Item("EldersSelector", "Select all individuals which are too old for their current layer.")]
|
---|
[17097] | 34 | [StorableType("5C81CE34-F8D4-4B92-A2E4-A62332D68B1C")]
|
---|
[13046] | 35 | public sealed class EldersSelector : Selector {
|
---|
[13127] | 36 | public IScopeTreeLookupParameter<DoubleValue> AgeParameter {
|
---|
[13046] | 37 | get { return (IScopeTreeLookupParameter<DoubleValue>)Parameters["Age"]; }
|
---|
| 38 | }
|
---|
[13127] | 39 | public ILookupParameter<IntArray> AgeLimitsParameter {
|
---|
[11585] | 40 | get { return (ILookupParameter<IntArray>)Parameters["AgeLimits"]; }
|
---|
| 41 | }
|
---|
[13127] | 42 | public ILookupParameter<IntValue> NumberOfLayersParameter {
|
---|
[11585] | 43 | get { return (ILookupParameter<IntValue>)Parameters["NumberOfLayers"]; }
|
---|
| 44 | }
|
---|
[13127] | 45 | public ILookupParameter<IntValue> LayerParameter {
|
---|
[11586] | 46 | get { return (ILookupParameter<IntValue>)Parameters["Layer"]; }
|
---|
| 47 | }
|
---|
[11585] | 48 |
|
---|
| 49 | [StorableConstructor]
|
---|
[17097] | 50 | private EldersSelector(StorableConstructorFlag _) : base(_) { }
|
---|
[11585] | 51 | private EldersSelector(EldersSelector original, Cloner cloner)
|
---|
| 52 | : base(original, cloner) { }
|
---|
| 53 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 54 | return new EldersSelector(this, cloner);
|
---|
| 55 | }
|
---|
| 56 | public EldersSelector()
|
---|
| 57 | : base() {
|
---|
[13127] | 58 | Parameters.Add(new ScopeTreeLookupParameter<DoubleValue>("Age", "The age of individuals."));
|
---|
[13206] | 59 | Parameters.Add(new LookupParameter<IntArray>("AgeLimits", "The maximum age an individual is allowed to reach in a certain layer."));
|
---|
[13127] | 60 | Parameters.Add(new LookupParameter<IntValue>("NumberOfLayers", "The number of layers."));
|
---|
[13206] | 61 | Parameters.Add(new LookupParameter<IntValue>("Layer", "The number of the current layer."));
|
---|
[11585] | 62 | }
|
---|
| 63 |
|
---|
| 64 | protected override IScope[] Select(List<IScope> scopes) {
|
---|
[13046] | 65 | var ages = AgeParameter.ActualValue;
|
---|
[11585] | 66 | var ageLimits = AgeLimitsParameter.ActualValue;
|
---|
| 67 | int numberOfLayers = NumberOfLayersParameter.ActualValue.Value;
|
---|
[11586] | 68 | int layer = LayerParameter.ActualValue.Value;
|
---|
[11585] | 69 |
|
---|
[11609] | 70 | if (layer >= numberOfLayers - 1) // is max layer?
|
---|
[11585] | 71 | return new IScope[0];
|
---|
| 72 |
|
---|
| 73 | int limit = ageLimits[layer];
|
---|
[13046] | 74 | var elders = ages
|
---|
| 75 | .Select((x, index) => new { index, age = x.Value })
|
---|
| 76 | .Where(x => x.age > limit)
|
---|
| 77 | .ToList();
|
---|
[11585] | 78 |
|
---|
[13046] | 79 | IScope[] selected = new IScope[elders.Count];
|
---|
| 80 | for (int i = 0; i < elders.Count; i++) {
|
---|
| 81 | selected[i] = scopes[elders[i].index];
|
---|
| 82 | scopes[elders[i].index] = null;
|
---|
| 83 | }
|
---|
| 84 | scopes.RemoveAll(x => x == null);
|
---|
| 85 | return selected;
|
---|
[11585] | 86 | }
|
---|
| 87 | }
|
---|
| 88 | } |
---|