[11656] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[12012] | 3 | * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[11838] | 4 | * and the BEACON Center for the Study of Evolution in Action.
|
---|
[11656] | 5 | *
|
---|
| 6 | * This file is part of HeuristicLab.
|
---|
| 7 | *
|
---|
| 8 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
| 9 | * it under the terms of the GNU General Public License as published by
|
---|
| 10 | * the Free Software Foundation, either version 3 of the License, or
|
---|
| 11 | * (at your option) any later version.
|
---|
| 12 | *
|
---|
| 13 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 16 | * GNU General Public License for more details.
|
---|
| 17 | *
|
---|
| 18 | * You should have received a copy of the GNU General Public License
|
---|
| 19 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 20 | */
|
---|
| 21 | #endregion
|
---|
| 22 |
|
---|
| 23 | using System;
|
---|
| 24 | using System.Collections.Generic;
|
---|
| 25 | using System.Linq;
|
---|
[11662] | 26 | using HeuristicLab.Common;
|
---|
[11656] | 27 | using HeuristicLab.Core;
|
---|
[11987] | 28 | using HeuristicLab.Encodings.BinaryVectorEncoding;
|
---|
[11939] | 29 | using HeuristicLab.Random;
|
---|
[11656] | 30 |
|
---|
| 31 | namespace HeuristicLab.Algorithms.ParameterlessPopulationPyramid {
|
---|
[11838] | 32 | // This code is based off the publication
|
---|
| 33 | // B. W. Goldman and W. F. Punch, "Parameter-less Population Pyramid," GECCO, pp. 785–792, 2014
|
---|
| 34 | // and the original source code in C++11 available from: https://github.com/brianwgoldman/Parameter-less_Population_Pyramid
|
---|
[11656] | 35 | public class LinkageTree {
|
---|
[11662] | 36 | private readonly int[][][] occurances;
|
---|
| 37 | private readonly List<int>[] clusters;
|
---|
[11663] | 38 | private List<int> clusterOrdering;
|
---|
[11662] | 39 | private readonly int length;
|
---|
[11663] | 40 | private readonly IRandom rand;
|
---|
| 41 | private bool rebuildRequired = false;
|
---|
[11656] | 42 |
|
---|
[11663] | 43 | public LinkageTree(int length, IRandom rand) {
|
---|
[11662] | 44 | this.length = length;
|
---|
[11663] | 45 | this.rand = rand;
|
---|
[11662] | 46 | occurances = new int[length][][];
|
---|
[11656] | 47 |
|
---|
[11663] | 48 | // Create a lower triangular matrix without the diagonal
|
---|
[11662] | 49 | for (int i = 1; i < length; i++) {
|
---|
[11656] | 50 | occurances[i] = new int[i][];
|
---|
| 51 | for (int j = 0; j < i; j++) {
|
---|
| 52 | occurances[i][j] = new int[4];
|
---|
| 53 | }
|
---|
| 54 | }
|
---|
[11662] | 55 | clusters = new List<int>[2 * length - 1];
|
---|
[11656] | 56 | for (int i = 0; i < clusters.Length; i++) {
|
---|
| 57 | clusters[i] = new List<int>();
|
---|
| 58 | }
|
---|
[11662] | 59 | clusterOrdering = new List<int>();
|
---|
[11656] | 60 |
|
---|
| 61 | // first "length" clusters just contain a single gene
|
---|
[11662] | 62 | for (int i = 0; i < length; i++) {
|
---|
[11656] | 63 | clusters[i].Add(i);
|
---|
| 64 | }
|
---|
| 65 | }
|
---|
| 66 |
|
---|
[11987] | 67 | public void Add(BinaryVector solution) {
|
---|
[11662] | 68 | if (solution.Length != length) throw new ArgumentException("The individual has not the correct length.");
|
---|
[11656] | 69 | for (int i = 1; i < solution.Length; i++) {
|
---|
| 70 | for (int j = 0; j < i; j++) {
|
---|
| 71 | // Updates the entry of the 4 long array based on the two bits
|
---|
[11674] | 72 |
|
---|
| 73 | var pattern = (Convert.ToByte(solution[j]) << 1) + Convert.ToByte(solution[i]);
|
---|
[11656] | 74 | occurances[i][j][pattern]++;
|
---|
| 75 | }
|
---|
| 76 | }
|
---|
[11663] | 77 | rebuildRequired = true;
|
---|
[11656] | 78 | }
|
---|
| 79 |
|
---|
| 80 | // While "total" always has an integer value, it is a double to reduce
|
---|
| 81 | // how often type casts are needed to prevent integer divison
|
---|
[11672] | 82 | // In the GECCO paper, calculates Equation 2
|
---|
[11656] | 83 | private static double NegativeEntropy(int[] counts, double total) {
|
---|
| 84 | double sum = 0;
|
---|
[11674] | 85 | for (int i = 0; i < counts.Length; i++) {
|
---|
| 86 | if (counts[i] != 0) {
|
---|
| 87 | sum += ((counts[i] / total) * Math.Log(counts[i] / total));
|
---|
| 88 | }
|
---|
[11656] | 89 | }
|
---|
| 90 | return sum;
|
---|
| 91 | }
|
---|
[11662] | 92 |
|
---|
[11672] | 93 | // Uses the frequency table to calcuate the entropy distance between two indices.
|
---|
| 94 | // In the GECCO paper, calculates Equation 1
|
---|
[11674] | 95 | private int[] bits = new int[4];
|
---|
[11656] | 96 | private double EntropyDistance(int i, int j) {
|
---|
[11663] | 97 | // This ensures you are using the lower triangular part of "occurances"
|
---|
[11656] | 98 | if (i < j) {
|
---|
| 99 | int temp = i;
|
---|
| 100 | i = j;
|
---|
| 101 | j = temp;
|
---|
| 102 | }
|
---|
| 103 | var entry = occurances[i][j];
|
---|
| 104 | // extracts the occurrences of the individual bits
|
---|
| 105 | bits[0] = entry[0] + entry[2]; // i zero
|
---|
| 106 | bits[1] = entry[1] + entry[3]; // i one
|
---|
| 107 | bits[2] = entry[0] + entry[1]; // j zero
|
---|
| 108 | bits[3] = entry[2] + entry[3]; // j one
|
---|
| 109 | double total = bits[0] + bits[1];
|
---|
| 110 | // entropy of the two bits on their own
|
---|
| 111 | double separate = NegativeEntropy(bits, total);
|
---|
| 112 | // entropy of the two bits as a single unit
|
---|
| 113 | double together = NegativeEntropy(entry, total);
|
---|
| 114 | // If together there is 0 entropy, the distance is zero
|
---|
[11662] | 115 | if (together.IsAlmost(0)) {
|
---|
| 116 | return 0.0;
|
---|
[11656] | 117 | }
|
---|
[11662] | 118 | return 2 - (separate / together);
|
---|
[11656] | 119 | }
|
---|
| 120 |
|
---|
[11674] | 121 |
|
---|
| 122 |
|
---|
[11672] | 123 | // Performs O(N^2) clustering based on the method described in:
|
---|
| 124 | // "Optimal implementations of UPGMA and other common clustering algorithms"
|
---|
| 125 | // by I. Gronau and S. Moran
|
---|
| 126 | // In the GECCO paper, Figure 2 is a simplified version of this algorithm.
|
---|
[11674] | 127 | private double[][] distances;
|
---|
[11663] | 128 | private void Rebuild() {
|
---|
[11674] | 129 | if (distances == null) {
|
---|
| 130 | distances = new double[clusters.Length * 2 - 1][];
|
---|
| 131 | for (int i = 0; i < distances.Length; i++)
|
---|
| 132 | distances[i] = new double[clusters.Length * 2 - 1];
|
---|
| 133 | }
|
---|
| 134 |
|
---|
| 135 |
|
---|
[11656] | 136 | // Keep track of which clusters have not been merged
|
---|
[11674] | 137 | var topLevel = new List<int>(length);
|
---|
| 138 | for (int i = 0; i < length; i++)
|
---|
| 139 | topLevel.Add(i);
|
---|
[11656] | 140 |
|
---|
[11674] | 141 | bool[] useful = new bool[clusters.Length];
|
---|
| 142 | for (int i = 0; i < useful.Length; i++)
|
---|
| 143 | useful[i] = true;
|
---|
| 144 |
|
---|
[11656] | 145 | // Store the distances between all clusters
|
---|
[11662] | 146 | for (int i = 1; i < length; i++) {
|
---|
[11656] | 147 | for (int j = 0; j < i; j++) {
|
---|
[11674] | 148 | distances[i][j] = EntropyDistance(clusters[i][0], clusters[j][0]);
|
---|
[11656] | 149 | // make it symmetric
|
---|
[11674] | 150 | distances[j][i] = distances[i][j];
|
---|
[11656] | 151 | }
|
---|
| 152 | }
|
---|
| 153 | // Each iteration we add some amount to the path, and remove the last
|
---|
| 154 | // two elements. This keeps track of how much of usable is in the path.
|
---|
| 155 | int end_of_path = 0;
|
---|
| 156 |
|
---|
| 157 | // build all clusters of size greater than 1
|
---|
[11662] | 158 | for (int index = length; index < clusters.Length; index++) {
|
---|
[11656] | 159 | // Shuffle everything not yet in the path
|
---|
[11674] | 160 | topLevel.ShuffleInPlace(rand, end_of_path, topLevel.Count - 1);
|
---|
[11656] | 161 |
|
---|
| 162 | // if nothing in the path, just add a random usable node
|
---|
| 163 | if (end_of_path == 0) {
|
---|
| 164 | end_of_path = 1;
|
---|
| 165 | }
|
---|
| 166 | while (end_of_path < topLevel.Count) {
|
---|
| 167 | // last node in the path
|
---|
| 168 | int final = topLevel[end_of_path - 1];
|
---|
| 169 |
|
---|
| 170 | // best_index stores the location of the best thing in the top level
|
---|
| 171 | int best_index = end_of_path;
|
---|
[11674] | 172 | double min_dist = distances[final][topLevel[best_index]];
|
---|
[11656] | 173 | // check all options which might be closer to "final" than "topLevel[best_index]"
|
---|
| 174 | for (int option = end_of_path + 1; option < topLevel.Count; option++) {
|
---|
[11674] | 175 | if (distances[final][topLevel[option]] < min_dist) {
|
---|
| 176 | min_dist = distances[final][topLevel[option]];
|
---|
[11656] | 177 | best_index = option;
|
---|
| 178 | }
|
---|
| 179 | }
|
---|
| 180 | // If the current last two in the path are minimally distant
|
---|
[11674] | 181 | if (end_of_path > 1 && min_dist >= distances[final][topLevel[end_of_path - 2]]) {
|
---|
[11656] | 182 | break;
|
---|
| 183 | }
|
---|
| 184 |
|
---|
| 185 | // move the best to the end of the path
|
---|
| 186 | topLevel.Swap(end_of_path, best_index);
|
---|
| 187 | end_of_path++;
|
---|
| 188 | }
|
---|
| 189 | // Last two elements in the path are the clusters to join
|
---|
| 190 | int first = topLevel[end_of_path - 2];
|
---|
| 191 | int second = topLevel[end_of_path - 1];
|
---|
| 192 |
|
---|
| 193 | // Only keep a cluster if the distance between the joining clusters is > zero
|
---|
[11674] | 194 | bool keep = !distances[first][second].IsAlmost(0.0);
|
---|
[11656] | 195 | useful[first] = keep;
|
---|
| 196 | useful[second] = keep;
|
---|
| 197 |
|
---|
| 198 | // create the new cluster
|
---|
| 199 | clusters[index] = clusters[first].Concat(clusters[second]).ToList();
|
---|
| 200 | // Calculate distances from all clusters to the newly created cluster
|
---|
| 201 | int i = 0;
|
---|
| 202 | int end = topLevel.Count - 1;
|
---|
| 203 | while (i <= end) {
|
---|
| 204 | int x = topLevel[i];
|
---|
| 205 | // Moves 'first' and 'second' to after "end" in topLevel
|
---|
| 206 | if (x == first || x == second) {
|
---|
| 207 | topLevel.Swap(i, end);
|
---|
| 208 | end--;
|
---|
| 209 | continue;
|
---|
| 210 | }
|
---|
| 211 | // Use the previous distances to calculate the joined distance
|
---|
[11674] | 212 | double first_distance = distances[first][x];
|
---|
[11656] | 213 | first_distance *= clusters[first].Count;
|
---|
[11674] | 214 | double second_distance = distances[second][x];
|
---|
[11656] | 215 | second_distance *= clusters[second].Count;
|
---|
[11674] | 216 | distances[x][index] = ((first_distance + second_distance)
|
---|
[11656] | 217 | / (clusters[first].Count + clusters[second].Count));
|
---|
| 218 | // make it symmetric
|
---|
[11674] | 219 | distances[index][x] = distances[x][index];
|
---|
[11656] | 220 | i++;
|
---|
| 221 | }
|
---|
| 222 |
|
---|
| 223 | // Remove first and second from the path
|
---|
| 224 | end_of_path -= 2;
|
---|
| 225 | topLevel.RemoveAt(topLevel.Count - 1);
|
---|
| 226 | topLevel[topLevel.Count - 1] = index;
|
---|
| 227 | }
|
---|
| 228 | // Extract the useful clusters
|
---|
[11662] | 229 | clusterOrdering.Clear();
|
---|
[11656] | 230 | // Add all useful clusters. The last one is never useful.
|
---|
| 231 | for (int i = 0; i < useful.Length - 1; i++) {
|
---|
[11662] | 232 | if (useful[i]) clusterOrdering.Add(i);
|
---|
[11656] | 233 | }
|
---|
[11663] | 234 |
|
---|
| 235 | // Shuffle before sort to ensure ties are broken randomly
|
---|
[11662] | 236 | clusterOrdering.ShuffleInPlace(rand);
|
---|
[11663] | 237 | clusterOrdering = clusterOrdering.OrderBy(i => clusters[i].Count).ToList();
|
---|
[11656] | 238 | }
|
---|
| 239 |
|
---|
[11663] | 240 | public IEnumerable<List<int>> Clusters {
|
---|
| 241 | get {
|
---|
| 242 | // Just in time rebuilding
|
---|
| 243 | if (rebuildRequired) Rebuild();
|
---|
| 244 | foreach (var index in clusterOrdering) {
|
---|
| 245 | // Send out the clusters in the desired order
|
---|
| 246 | yield return clusters[index];
|
---|
| 247 | }
|
---|
| 248 | }
|
---|
[11656] | 249 | }
|
---|
| 250 | }
|
---|
[11663] | 251 | } |
---|