Free cookie consent management tool by TermsFeed Policy Generator

source: branches/NSGA2/HeuristicLab.Algorithms.NSGA2/3.3/CrowdedTournamentSelector.cs @ 4396

Last change on this file since 4396 was 4167, checked in by abeham, 14 years ago

#1040

  • Added item attribute to CrowdedTournamentSelector
File size: 5.2 KB
Line 
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
22using System.Collections.Generic;
23using System.Linq;
24using HeuristicLab.Core;
25using HeuristicLab.Data;
26using HeuristicLab.Optimization;
27using HeuristicLab.Parameters;
28using HeuristicLab.Selection;
29using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
30
31namespace HeuristicLab.Algorithms.NSGA2 {
32  [Item("CrowdedTournamentSelector", "Selects solutions using tournament selection by using the partial order defined in Deb et al. 2002. A Fast and Elitist Multiobjective Genetic Algorithm: NSGA-II. IEEE Transactions on Evolutionary Computation, 6(2), pp. 182-197.")]
33  [StorableClass]
34  public class CrowdedTournamentSelector : Selector, IMultiObjectiveSelector, IStochasticOperator {
35    public ILookupParameter<BoolArray> MaximizationParameter {
36      get { return (ILookupParameter<BoolArray>)Parameters["Maximization"]; }
37    }
38    public IValueLookupParameter<IntValue> NumberOfSelectedSubScopesParameter {
39      get { return (IValueLookupParameter<IntValue>)Parameters["NumberOfSelectedSubScopes"]; }
40    }
41    public IValueParameter<BoolValue> CopySelectedParameter {
42      get { return (IValueParameter<BoolValue>)Parameters["CopySelected"]; }
43    }
44    public ILookupParameter<IRandom> RandomParameter {
45      get { return (ILookupParameter<IRandom>)Parameters["Random"]; }
46    }
47    public ILookupParameter<ItemArray<DoubleArray>> QualitiesParameter {
48      get { return (ILookupParameter<ItemArray<DoubleArray>>)Parameters["Qualities"]; }
49    }
50    public IScopeTreeLookupParameter<IntValue> RankParameter {
51      get { return (IScopeTreeLookupParameter<IntValue>)Parameters["Rank"]; }
52    }
53    public IScopeTreeLookupParameter<DoubleValue> CrowdingDistanceParameter {
54      get { return (IScopeTreeLookupParameter<DoubleValue>)Parameters["CrowdingDistance"]; }
55    }
56    public IValueLookupParameter<IntValue> GroupSizeParameter {
57      get { return (IValueLookupParameter<IntValue>)Parameters["GroupSize"]; }
58    }
59
60    public BoolValue CopySelected {
61      get { return CopySelectedParameter.Value; }
62      set { CopySelectedParameter.Value = value; }
63    }
64
65    public CrowdedTournamentSelector()
66      : base() {
67      Parameters.Add(new LookupParameter<BoolArray>("Maximization", "For each objective determines whether it should be maximized or minimized."));
68      Parameters.Add(new ValueLookupParameter<IntValue>("NumberOfSelectedSubScopes", "The number of sub-scopes that should be selected."));
69      Parameters.Add(new ValueParameter<BoolValue>("CopySelected", "True if the selected scopes are to be copied (cloned) otherwise they're moved."));
70      Parameters.Add(new LookupParameter<IRandom>("Random", "The random number generator."));
71      Parameters.Add(new ScopeTreeLookupParameter<DoubleArray>("Qualities", "The solutions' qualities vector."));
72      Parameters.Add(new ScopeTreeLookupParameter<IntValue>("Rank", "The solutions' domination rank."));
73      Parameters.Add(new ScopeTreeLookupParameter<DoubleValue>("CrowdingDistance", "The solutions' crowding distance values."));
74      Parameters.Add(new ValueLookupParameter<IntValue>("GroupSize", "The size of the group from which the best will be chosen.", new IntValue(2)));
75    }
76
77    protected override IScope[] Select(List<IScope> scopes) {
78      IRandom random = RandomParameter.ActualValue;
79      List<int> ranks = RankParameter.ActualValue.Select(x => x.Value).ToList();
80      List<double> crowdingDistance = CrowdingDistanceParameter.ActualValue.Select(x => x.Value).ToList();
81      int count = NumberOfSelectedSubScopesParameter.ActualValue.Value;
82      int groupSize = GroupSizeParameter.ActualValue.Value;
83      bool copy = CopySelected.Value;
84      IScope[] selected = new IScope[count];
85
86      for (int i = 0; i < count; i++) {
87        int best = random.Next(scopes.Count);
88        int index;
89        for (int j = 1; j < groupSize; j++) {
90          index = random.Next(scopes.Count);
91          if (ranks[best] > ranks[index]
92            || ranks[best] == ranks[index]
93              && crowdingDistance[best] < crowdingDistance[index]) {
94            best = index;
95          }
96        }
97
98        if (copy)
99          selected[i] = (IScope)scopes[best].Clone();
100        else {
101          selected[i] = scopes[best];
102          scopes.RemoveAt(best);
103          ranks.RemoveAt(best);
104          crowdingDistance.RemoveAt(best);
105        }
106      }
107
108      return selected;
109    }
110  }
111}
Note: See TracBrowser for help on using the repository browser.