Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Selection/3.3/TournamentSelector.cs @ 3214

Last change on this file since 3214 was 3160, checked in by swagner, 15 years ago

Removed Creatable test attribute (#935).

File size: 3.0 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.Persistence.Default.CompositeSerializers.Storable;
29
30namespace HeuristicLab.Selection {
31  /// <summary>
32  /// A tournament selection operator which considers a single double quality value for selection.
33  /// </summary>
34  [Item("TournamentSelector", "A tournament selection operator which considers a single double quality value for selection.")]
35  [StorableClass]
36  public sealed class TournamentSelector : StochasticSingleObjectiveSelector, ISingleObjectiveSelector {
37    public ValueLookupParameter<IntValue> GroupSizeParameter {
38      get { return (ValueLookupParameter<IntValue>)Parameters["GroupSize"]; }
39    }
40
41    public TournamentSelector() : base() {
42      Parameters.Add(new ValueLookupParameter<IntValue>("GroupSize", "The size of the tournament group.", new IntValue(2)));
43    }
44
45    protected override IScope[] Select(List<IScope> scopes) {
46      int count = NumberOfSelectedSubScopesParameter.ActualValue.Value;
47      bool copy = CopySelectedParameter.Value.Value;
48      IRandom random = RandomParameter.ActualValue;
49      bool maximization = MaximizationParameter.ActualValue.Value;
50      List<double> qualities = QualityParameter.ActualValue.Select(x => x.Value).ToList();
51      int groupSize = GroupSizeParameter.ActualValue.Value;
52      IScope[] selected = new IScope[count];
53
54      for (int i = 0; i < count; i++) {
55        int best = random.Next(scopes.Count);
56        int index;
57        for (int j = 1; j < groupSize; j++) {
58          index = random.Next(scopes.Count);
59          if (((maximization) && (qualities[index] > qualities[best])) ||
60              ((!maximization) && (qualities[index] < qualities[best]))) {
61            best = index;
62          }
63        }
64
65        if (copy)
66          selected[i] = (IScope)scopes[best].Clone();
67        else {
68          selected[i] = scopes[best];
69          scopes.RemoveAt(best);
70          qualities.RemoveAt(best);
71        }
72      }
73      return selected;
74    }
75  }
76}
Note: See TracBrowser for help on using the repository browser.