Free cookie consent management tool by TermsFeed Policy Generator

source: branches/CloningRefactoring/HeuristicLab.Problems.TravelingSalesman/3.3/Analyzers/TSPAlleleFrequencyAnalyzer.cs @ 4697

Last change on this file since 4697 was 4697, checked in by abeham, 13 years ago

#922

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