Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.MultiObjectiveTestFunctions/HeuristicLab.Problems.MultiObjectiveTestFunctions/3.3/Calculators/Crowding.cs @ 14018

Last change on this file since 14018 was 14018, checked in by mkommend, 8 years ago

#1087: Rewrote and adapted the multi-objective calculators.

File size: 2.5 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2016 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;
23using System.Collections.Generic;
24using System.Linq;
25
26namespace HeuristicLab.Problems.MultiObjectiveTestFunctions {
27
28  /// <summary>
29  /// Crowding distance d(x,A) is usually defined between a point x and a set of points A
30  /// d(x,A) is then a weighted sum over all dimensions where for each dimension the next larger and the next smaller Point to x are subtracted
31  /// I extended the concept and defined the Crowding distance of a front A as the mean of the crowding distances of every point x in A
32  /// C(A) = mean(d(x,A)) where x in A  and d(x,A) is not infinite
33  /// </summary>
34  public static class Crowding {
35
36    public static double Calculate(IEnumerable<double[]> front, double[,] bounds) {
37
38      double[] pointsums = new double[front.Count()];
39
40      for (int dim = 0; dim < front.First().Length; dim++) {
41
42        double[] arr = front.Select(x => x[dim]).ToArray();
43        Array.Sort(arr);
44
45        double fmax = bounds[dim % bounds.GetLength(0), 1];
46        double fmin = bounds[dim % bounds.GetLength(0), 0];
47
48        int pointIdx = 0;
49        foreach (double[] point in front) {
50          double d = 0;
51          int pos = Array.BinarySearch(arr, point[dim]);
52          if (pos != 0 && pos != arr.Count() - 1) {
53            d = (arr[pos + 1] - arr[pos - 1]) / (fmax - fmin);
54            pointsums[pointIdx++] += d;
55          }
56        }
57      }
58
59      double sum = 0;
60      int c = 0;
61      foreach (double d in pointsums) {
62        if (!Double.IsInfinity(d)) {
63          sum += d;
64          c++;
65        }
66      }
67
68      return c == 0 ? Double.PositiveInfinity : sum / c;
69    }
70
71  }
72}
Note: See TracBrowser for help on using the repository browser.