Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.TravelingSalesman/3.3/Analyzers/TSPAlleleFrequencyAnalyzer.cs @ 4704

Last change on this file since 4704 was 4704, checked in by swagner, 13 years ago

Worked on allele frequency analysis (#1234)

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;
23using HeuristicLab.Analysis;
24using HeuristicLab.Core;
25using HeuristicLab.Data;
26using HeuristicLab.Encodings.PermutationEncoding;
27using HeuristicLab.Parameters;
28using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
29
30namespace HeuristicLab.Problems.TravelingSalesman {
31  /// <summary>
32  /// An operator for analyzing the frequency of alleles in solutions of Traveling Salesman Problems given in path representation.
33  /// </summary>
34  [Item("TSPAlleleFrequencyAnalyzer", "An operator for analyzing the frequency of alleles in solutions of Traveling Salesman Problems given in path representation.")]
35  [StorableClass]
36  public sealed class TSPAlleleFrequencyAnalyzer : AlleleFrequencyAnalyzer<Permutation> {
37    public LookupParameter<DoubleMatrix> CoordinatesParameter {
38      get { return (LookupParameter<DoubleMatrix>)Parameters["Coordinates"]; }
39    }
40
41    [StorableConstructor]
42    private TSPAlleleFrequencyAnalyzer(bool deserializing) : base(deserializing) { }
43    public TSPAlleleFrequencyAnalyzer()
44      : base() {
45      Parameters.Add(new LookupParameter<DoubleMatrix>("Coordinates", "The x- and y-Coordinates of the cities."));
46    }
47
48    protected override Allele[] CalculateAlleles(Permutation solution) {
49      Allele[] alleles = new Allele[solution.Length];
50      DoubleMatrix coords = CoordinatesParameter.ActualValue;
51
52      for (int i = 0; i < solution.Length - 1; i++)
53        alleles[i] = CreateAllele(solution[i], solution[i + 1], coords);
54      alleles[alleles.Length - 1] = CreateAllele(solution[solution.Length - 1], solution[0], coords);
55
56      return alleles;
57    }
58
59    private Allele CreateAllele(int source, int target, DoubleMatrix coords) {
60      if (source > target) {
61        int h = source;
62        source = target;
63        target = h;
64      }
65
66      return new Allele(source.ToString() + "-" + target.ToString(),
67                        CalculateLength(coords[source, 0], coords[source, 1], coords[target, 0], coords[target, 1]));
68    }
69
70    private double CalculateLength(double x1, double y1, double x2, double y2) {
71      return Math.Sqrt((x1 - x2) * (x1 - x2) + (y1 - y2) * (y1 - y2));
72    }
73  }
74}
Note: See TracBrowser for help on using the repository browser.