Free cookie consent management tool by TermsFeed Policy Generator

source: branches/LinearLinkage/HeuristicLab.Encodings.LinearLinkageEncoding/3.3/Manipulators/GraftManipulator.cs @ 12396

Last change on this file since 12396 was 12396, checked in by abeham, 9 years ago

#2319: Added SinglePointCrossover

File size: 3.0 KB
RevLine 
[12286]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
[12288]22using System;
[12286]23using System.Linq;
24using HeuristicLab.Common;
25using HeuristicLab.Core;
26using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
27
28namespace HeuristicLab.Encodings.LinearLinkageEncoding {
[12288]29  [Item("Graft Manipulator", "Performs graft mutation as described in Du, J., Korkmaz, E.E., Alhajj, R., and Barker, K. 2004. Novel Clustering Approach that employs Genetic Algorithm with New Representation Scheme and Multiple Objectives. Data Warehousing and Knowledge Discovery, pp. 219-228. Springer Berlin Heidelberg.")]
[12286]30  [StorableClass]
[12288]31  public sealed class GraftManipulator : LinearLinkageManipulator {
[12286]32
33    [StorableConstructor]
[12288]34    private GraftManipulator(bool deserializing) : base(deserializing) { }
35    private GraftManipulator(GraftManipulator original, Cloner cloner) : base(original, cloner) { }
[12396]36    public GraftManipulator() { }
[12286]37
38    public override IDeepCloneable Clone(Cloner cloner) {
[12288]39      return new GraftManipulator(this, cloner);
[12286]40    }
41
[12396]42    public static void Apply(IRandom random, LinearLinkage lle) {
[12288]43      int tries = lle.Length;
44      var index = random.Next(lle.Length);
45      while (tries > 0 && lle[index] == index) {
46        index = random.Next(lle.Length);
47        tries--;
48      }
[12396]49      if (lle[index] != index) Apply(random, lle, index);
[12288]50    }
[12286]51
[12396]52    public static void Apply(IRandom random, LinearLinkage lle, int index) {
[12288]53      var groups = lle.Select((val, idx) => Tuple.Create(idx, val))
54                      .Where(x => x.Item1 == x.Item2)
55                      .Select(x => x.Item2).ToList();
56      var z = groups.Count;
57
58      if (random.NextDouble() < 0.5)
59        lle[index] = index; // divide the cluster into two
60      else {
61        var c = random.Next(z);
62        if (groups[c] > index)
63          lle[index] = groups[c]; // combine the portion with another class
64        else {
65          // combine the other class here
66          lle[groups[c]] = lle[index];
67          lle[index] = index;
68        }
69        lle.LinearizeTreeStructures();
[12286]70      }
71    }
72
73    protected override void Manipulate(IRandom random, LinearLinkage lle) {
[12396]74      Apply(random, lle);
[12286]75    }
76  }
77}
Note: See TracBrowser for help on using the repository browser.